-
Notifications
You must be signed in to change notification settings - Fork 43
Event Buffering
Obaied edited this page Nov 2, 2016
·
2 revisions
If your app makes heavy use of event tracking, you might want to delay some HTTP requests in order to send them in one batch
every minute. You can enable event buffering with your AdjustConfig
instance by calling setEventBufferingEnabled
method:
var adjustConfig = new AdjustConfig(appToken, environment);
adjustConfig.setEventBufferingEnabled(true);
Adjust.create(adjustConfig);
Basic Integration
Additional Features