SDK Events (Java)

Description

When initializing the SDK, an optional OnDeviceDecisioningHandler object can be provided on the ClientConfig object. It can be used to subscribe to various events that occur within the SDK. For instance, the onDeviceDecisioningReady event may be used with a callback function that will be invoked when the SDK is ready for method calls.

Events

The OnDeviceDecisioningHandler object contains the following callbacks, which are called for certain events:

Name
Arguments
Description
onDeviceDecisioningReady
None
Called only once the first time the client is ready for on-device decisioning
artifactDownloadSucceeded
byte[] contents of artifact file
Called every time a on-device decisioning artifact is downloaded
artifactDownloadFailed
Exception
Called every time there is a failure to download a on-device decisioning artifact

Example

SDK Events

ClientConfig clientConfig = ClientConfig.builder()
        .client("acmeclient")
        .organizationId("1234567890@AdobeOrg")
        .defaultDecisioningMethod(DecisioningMethod.ON_DEVICE)
        .onDeviceDecisioningHandler(new OnDeviceDecisioningHandler() {
            @Override
            public void onDeviceDecisioningReady() {
                // make getOffers requests
                makeTargetRequests();
            }

            @Override
            public void artifactDownloadSucceeded(byte[] artifactData) {
                System.out.println("The artifact was successfully downloaded.");
            }

            @Override
            public void artifactDownloadFailed(TargetClientException e) {
                System.out.println("The artifact failed to download.");
            }
        }).build();

TargetClient targetJavaClient = TargetClient.create(clientConfig);


void makeTargetRequests() {
    List<MboxRequest> mboxRequests = new ArrayList<>();
    mboxRequests.add((MboxRequest) new MboxRequest().name("a1-serverside-ab").index(1));

    TargetDeliveryRequest targetDeliveryRequest = TargetDeliveryRequest.builder()
            .context(new Context().channel(ChannelType.WEB))
            .execute(new ExecuteRequest().setMboxes(mboxRequests))
            .build();

    TargetDeliveryResponse targetResponse = targetJavaClient.getOffers(targetDeliveryRequest);
}
recommendation-more-help
6906415f-169c-422b-89d3-7118e147c4e3