Package com.unblu.sdk.core.callback
Interface InitializeExceptionCallback
-
public interface InitializeExceptionCallback
Callback for exceptions which can occur while initializing theUnbluClient
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
onConfigureNotCalled()
Error when theUnblu.createVisitorClient(Application, UnbluClientConfiguration, UnbluNotificationApi, InitializeSuccessCallback, InitializeExceptionCallback)
Unblu.createAgentClient(Application, UnbluClientConfiguration, UnbluNotificationApi, InitializeSuccessCallback, InitializeExceptionCallback)
function was not calledvoid
onInErrorState()
UnbluClient is in error state and should be deinitialized first, before initializing itvoid
onInitFailed(UnbluClientErrorType errorType, java.lang.String details)
General error which caused the api not to start.
-
-
-
Method Detail
-
onConfigureNotCalled
void onConfigureNotCalled()
Error when theUnblu.createVisitorClient(Application, UnbluClientConfiguration, UnbluNotificationApi, InitializeSuccessCallback, InitializeExceptionCallback)
Unblu.createAgentClient(Application, UnbluClientConfiguration, UnbluNotificationApi, InitializeSuccessCallback, InitializeExceptionCallback)
function was not called
-
onInErrorState
void onInErrorState()
UnbluClient is in error state and should be deinitialized first, before initializing it
-
onInitFailed
void onInitFailed(@NonNull UnbluClientErrorType errorType, @Nullable java.lang.String details)
General error which caused the api not to start. It may contain a message for further details, but this message is for internal use only and not localized- Parameters:
errorType
- Type of the error, which occurreddetails
- Detailed message about the error. Can be null
-
-