ATS Mobile SDK Events
Learn more about the events exposed by the ATS Mobile SDK that you can leverage in your own application.
setAtsManagerCallback
Add a delegate to catch events triggered by the SDK. Events listeners allow you to react to different event of interests and error events.
LRAtsManager.setAtsManagerCallback(this)
LRAtsManager.INSTANCE.setAtsManagerCallback(this);
removeAtsManagerCallback
Removes the delegate.
LRAtsManager.removeAtsManagerCallback()
LRAtsManager.INSTANCE.removeAtsManagerCallback();
Events
Event Name | Description | Callback Result |
---|---|---|
LOADING | Fired when AtsManager starts initialization process. | LREvent.LOADING |
READY | Fired when AtsManager is fully initialized. | LREvent.READY |
DISABLED | Fired when ATSManager is disabled. | LREvent.DISABLED |
RESET | Fired after SDK reset is complete. | LREvent.RESET |
Updated about 4 hours ago