Set up callbacks to trigger functions when the SDK sends information to Adjust. You can set up callbacks for sessions and events.
Session callbacks
Set up session callbacks to trigger functions when the SDK sends session information. You can create success callbacks and failure callbacks. Success callbacks trigger when the SDK sends information to Adjust’s servers. Failure callbacks trigger when the SDK encounters a problem while sending the information.
Session callbacks have access to a response data object. You can use its properties in your callback function.
Property | Data type | Description |
---|---|---|
Message | string | The message from the server or the error logged by the SDK. |
Timestamp | string | The timestamp from Adjust’s servers. |
Adid | string | A unique device identifier provided by Adjust. |
JsonResponse | Dictionary<string, object> | The JSON object with the response from the server. |
WillRetry | bool | Indicates whether there will be an attempt to resend a failed package. |
Success callbacks
public void setSessionSuccessDelegate(Action<AdjustSessionSuccess> sessionSuccessDelegate, string sceneName = "Adjust");
Set up success callbacks to trigger functions when the SDK records a session.
AdjustConfig adjustConfig = new AdjustConfig("{Your App Token}", AdjustEnvironment.Sandbox);adjustConfig.setLogLevel(AdjustLogLevel.Verbose);adjustConfig.setSessionSuccessDelegate(SessionSuccessCallback);//...Adjust.start(adjustConfig);//...public void SessionSuccessCallback (AdjustSessionSuccess sessionSuccessData) { //...}
Example
This example shows how to create a callback function sessionSuccess
and register it as a success callback. The function logs the timestamp at which the SDK recorded the session.
AdjustConfig adjustConfig = new AdjustConfig("{Your App Token}", AdjustEnvironment.Sandbox);adjustConfig.setLogLevel(AdjustLogLevel.Verbose);adjustConfig.setSessionSuccessDelegate(sessionSuccess);// ...Adjust.start(adjustConfig);// ...public void sessionSuccess (AdjustSessionSuccess sessionSuccessData) { Debug.Log("Session recorded at " + sessionSuccessData.Timestamp);}
Failure callbacks
public void setSessionFailureDelegate(Action<AdjustSessionFailure> sessionFailureDelegate, string sceneName = "Adjust");
Set up failure callbacks to trigger functions when the SDK fails to record a session.
AdjustConfig adjustConfig = new AdjustConfig("{Your App Token}", AdjustEnvironment.Sandbox);adjustConfig.setLogLevel(AdjustLogLevel.Verbose);adjustConfig.setSessionFailureDelegate(SessionFailureCallback);//...Adjust.start(adjustConfig);//...public void SessionFailureCallback (AdjustSessionFailure sessionFailureData) { //...}
Example
This example shows how to create a callback function sessionFailure
and register it as a failure callback. The function logs the session failure message.
AdjustConfig adjustConfig = new AdjustConfig("{Your App Token}", AdjustEnvironment.Sandbox);adjustConfig.setLogLevel(AdjustLogLevel.Verbose);adjustConfig.setSessionFailureDelegate(sessionFailure);// ...Adjust.start(adjustConfig);// ...public void sessionFailure (AdjustSessionFailure sessionFailureData) { Debug.Log("Session recording failed. Response: " + sessionFailureData.Message);}
Event callbacks
Set up event callbacks to trigger functions when the SDK sends event information. You can create success callbacks and failure callbacks. Success callbacks trigger when the SDK sends information to Adjust’s servers. Failure callbacks trigger when the SDK encounters a problem while sending the information.
Event callbacks have access to a response data object. You can use its properties in your callback function.
Property | Data type | Description |
---|---|---|
Message | string | The message from the server or the error logged by the SDK. |
Timestamp | string | The timestamp from Adjust’s servers. |
Adid | string | A unique device identifier provided by Adjust. |
JsonResponse | Dictionary<string, object> | The JSON object with the response from the server. |
EventToken | string | The event token |
CallbackId | string | The custom callback ID set on the event object |
WillRetry | bool | Indicates whether there will be an attempt to resend a failed package. |
Success callbacks
public void setEventSuccessDelegate(Action<AdjustEventSuccess> eventSuccessDelegate, string sceneName = "Adjust");
Set up success callbacks to trigger functions when the SDK records an event.
AdjustConfig adjustConfig = new AdjustConfig("{Your App Token}", AdjustEnvironment.Sandbox);adjustConfig.setLogLevel(AdjustLogLevel.Verbose);adjustConfig.setEventSuccessDelegate(EventSuccessCallback);//...Adjust.start(adjustConfig);//...public void EventSuccessCallback(AdjustEventSuccess eventSuccessData) { //...}
Example
This example shows how to create a callback function eventSuccess
and register it as a success callback. The function logs the timestamp at which the SDK recorded the event.
AdjustConfig adjustConfig = new AdjustConfig("{Your App Token}", AdjustEnvironment.Sandbox);adjustConfig.setLogLevel(AdjustLogLevel.Verbose);adjustConfig.setEventSuccessDelegate(eventSuccess);// ...Adjust.start(adjustConfig);// ...public void eventSuccess (AdjustEventSuccess eventSuccessData) { Debug.Log("Event recorded at " + eventSuccessData.Timestamp);}
Failure callbacks
public void setEventFailureDelegate(Action<AdjustEventFailure> eventFailureDelegate, string sceneName = "Adjust");
Set up failure callbacks to trigger functions when the SDK fails to record an event.
AdjustConfig adjustConfig = new AdjustConfig("{Your App Token}", AdjustEnvironment.Sandbox);adjustConfig.setLogLevel(AdjustLogLevel.Verbose);adjustConfig.setEventFailureDelegate(EventFailureCallback);//...Adjust.start(adjustConfig);//...public void EventFailureCallback(AdjustEventFailure eventFailureData) { //...}
Example
This example shows how to create a callback function eventFailure
and register it as a failure callback. The function logs the event failure message.
AdjustConfig adjustConfig = new AdjustConfig("{Your App Token}", AdjustEnvironment.Sandbox);adjustConfig.setLogLevel(AdjustLogLevel.Verbose);adjustConfig.setEventFailureDelegate(eventFailure);// ...Adjust.start(adjustConfig);// ...public void eventFailure (AdjustEventFailure eventFailureData) { Debug.Log("Event recording failed. Response: " + eventFailureData.Message);}