Offline hits

 

Foreword

The AT Internet SDK enables you to store, on the user’s device, any hits that couldn’t be sent due to loss of Internet connection. For this, the SDK uses Android SQLite technology.

Use of this feature is subject to the subscription to an option. This feature may increase the disk space that your application occupies on a user’s device.

 

Setting up the storage mode

You can set up the storage management mode directly within the Tag Composer interface, or via the Tracker’s setConfig method.

Three modes are available:

  • Required: Hits are only stored when a loss of connection is detected.
  • Always: Hits are never sent. They are directly stored on the device.
  • Never (by default): Hits are never stored. If a loss of connection is detected at the same time as an attempt to send the hit, the hit will be lost.

To edit the hit storage mode, add the following code to the desired area:

Save hits during loss of connection:

tracker.setConfig("storage", "required", null);

Always save hits:

tracker.setConfig("storage", "always", null);

Never save hits:

tracker.setConfig("storage", "never", null);
 

Sending saved hits

At any moment (if an Internet connection is established), you can request that stored hits be sent.

To do this, the Tracker exposes an offline object offering a dispatch method:

ATInternet.getInstance().getDefaultTracker().Offline().dispatch();

This method sends all stored hits in an asynchronous manner, and deletes them if the send was successful. If the send failed, two new attempts will be made during the next hit send. If all attempts fail, the hit will be deleted from storage.

Thanks to this method, you may decide at which moment you want hits to be sent. By setting the storage mode to always, you can simply call the send method to trigger sending at the desired moment.

 

Recovering hits

 

Listing

You can recover the list of saved hits at any moment. To do this, the get method of the Offline class is available in the Tracker.

ArrayList<Hit> hits = ATInternet.getInstance().getDefaultTracker().Offline().get();

This method returns an object table Hit. This object possesses the following properties:

  • url: URL of the hit
  • creationDate: the date the hit was created
  • retryCount: number of attempts to send the hit
  • isOffline: indicates that the hit comes from storage
  • type: type of hit (e.g. Screen, Touch …)
 

First saved hit

You can recover the first hit saved via the oldest method of the Offline class:

Hit hit = ATInternet.getInstance().getDefaultTracker().Offline().oldest();
 

Last saved hit

You can recover the last saved hit via the latest method of the Offline class:

Hit hit = ATInternet.getInstance().getDefaultTracker().Offline().latest();
 

Counting

You may obtain the number of hits stored in the database at any moment. To do this, the Offline class exposes a count method:

int nbHits = ATInternet.getInstance().getDefaultTracker().Offline().count();
 

Deleting hits

You can manually delete stored hits thanks to the following static methods:

  1. delete: Deletes all stored hits

    ATInternet.getInstance().getDefaultTracker().Offline().delete();
  2. delete(int daysCount): Deletes all hits older than the indicated number of days

    ATInternet.getInstance().getDefaultTracker().Offline().delete(2);
  3. delete(Date olderThan): Deletes hits older than the date passed in the parameter

    ATInternet.getInstance().getDefaultTracker().Offline().delete(new Date());
Last update: 05/12/2018