@splitsoftware/splitio-commons
Version:
Split JavaScript SDK common components
34 lines (27 loc) • 1.22 kB
text/typescript
import { submitterFactory, firstPushWindowDecorator } from './submitter';
import { SUBMITTERS_PUSH_FULL_QUEUE } from '../../logger/constants';
import { ISdkFactoryContextSync } from '../../sdkFactory/types';
/**
* Submitter that periodically posts tracked events
*/
export function eventsSubmitterFactory(params: ISdkFactoryContextSync) {
const {
settings: { log, scheduler: { eventsPushRate }, startup: { eventsFirstPushWindow } },
serviceApi: { postEventsBulk },
storage: { events },
} = params;
// don't retry events.
let submitter = submitterFactory(log, postEventsBulk, events, eventsPushRate);
// Set a timer for the first push window of events.
if (eventsFirstPushWindow > 0) submitter = firstPushWindowDecorator(submitter, eventsFirstPushWindow);
// register events submitter to be executed when events cache is full
events.setOnFullQueueCb(() => {
if (submitter.isRunning()) {
log.info(SUBMITTERS_PUSH_FULL_QUEUE, [events.name]);
submitter.execute();
}
// If submitter is stopped (e.g., user consent declined or unknown, or app state offline), we don't send the data.
// Data will be sent when submitter is resumed.
});
return submitter;
}