IAsyncProxy

Protocol to be adopted by an Asynchronous Proxy

  • Initiate an async activity

    Declaration

    Swift

    func asyncAction(responder: IResponder, token: Any?)
  • This method is called by a service when the return value has been received.

    Declaration

    Swift

    func onResult(data: Any?)
  • This method is called by a service when an error has been received.

    Declaration

    Swift

    func onFault(info: Any?)