Classes
The following classes are available globally.
-
A base
IAsyncProxyimplementation.It allows the creator to associate data (a token) and methods that should be called when a request is completed.
Your subclass should override the
asyncActionmethod where your domain logic will handle the async operation. Must call super to set responder and the token.Instantiate as a proxy, with or without a name. The async activity is started by invoking the
asyncActionmethod. There cannot be more than one activity running per instance.
See more@see org.puremvc.swift.multicore.utilities.asyncproxy.patterns.proxy.AsyncProxy AsyncProxyDeclaration
Swift
public class AsyncProxy: Proxy, IAsyncProxy
View on GitHub
Classes Reference