LinkResolvableDelegate
public protocol LinkResolvableDelegate : AnyObject
A type that can receive result of resolving links
-
Will be called in case of success link resolving
Declaration
Swift
func didResolveLink(response: ResolveLinkResponse)Parameters
responseResolved link info
-
Will be called in case of failing link resolving
Declaration
Swift
func didFailedResolve(link: String, with error: Error)Parameters
linkstring representation of URL.
errorerror instance with details, what went wrong.
View on GitHub
LinkResolvableDelegate Protocol Reference