SdkSandboxManager.SendDataCallback
public
static
interface
SdkSandboxManager.SendDataCallback
android.app.sdksandbox.SdkSandboxManager.SendDataCallback |
A callback for tracking sending of data to an SDK.
Summary
Public methods | |
---|---|
abstract
void
|
onSendDataError(int errorCode, String errorMsg)
This notifies the client application that sending data to an SDK has failed. |
abstract
void
|
onSendDataSuccess(Bundle params)
This notifies the client application that sending data to the SDK has completed successfully. |
Public methods
onSendDataError
public abstract void onSendDataError (int errorCode, String errorMsg)
This notifies the client application that sending data to an SDK has failed.
Parameters | |
---|---|
errorCode |
int : int code for the error
Value is SdkSandboxManager.SEND_DATA_INTERNAL_ERROR |
errorMsg |
String : a String description of the error
This value cannot be null . |
onSendDataSuccess
public abstract void onSendDataSuccess (Bundle params)
This notifies the client application that sending data to the SDK has completed successfully.
Parameters | |
---|---|
params |
Bundle : This value cannot be null . |