Scheduler with datastore pause

Hello,

We have a scheduler, based on data of a datastore.
We do some update or create actions directly on datastore.
for example: create automaticly 5 new appointments.
We see scheduler syncs every item direct after creation. (see timeline on image)
Is it possible to pause the sync before creation, and restarts and resync after creation of all appointments.

Regards,

Laurens


As far as I can see, there is no easy way.
You can try to use .parse instead of .add

For example, something like next

data.add(event1) data.add(event2) data.add(event3)

can be changed like next

data.parse([ event1, event2, event3 ]);