Callbacks
This section contains the necessary methods to implement the InterfaceCallback
Called by initialize method. Use this to observe if SDK was correctly initialized:
public void initializeCallback(boolean status, @Nullable Errors error)
Use this to observe if a process was correctly created :
public void processCreated(String processId)
Use this to observe if a process was correctly closed:
public void processFinished()
Use this to observe when the SDK start:
public void interfaceStarted()
Use this to observe if SDK is closed:
public void interfaceClosed()
Was this helpful?