EventSenderableDelegate
public protocol EventSenderableDelegate : AnyObject
A type that can receive result of sending events
-
Will be called in case of success event sending
Declaration
Swift
func didSend(eventName: String, resultMessage: String)Parameters
eventNameName of event.
resultMessageMessage from server.
-
Will be called in case of failing event sending
Declaration
Swift
func didFailedSend(eventName: String, with error: Error)Parameters
eventNameName of event.
errorerror instance with details, what went wrong.
View on GitHub
EventSenderableDelegate Protocol Reference