The type of items that will be in the batch
Readonly
flushProcess the batch now by calling the processing function, unless the batch is empty or already running. If the processing function exits without fully emptying the batch (due to errors, time limits, etc.), another flush will be scheduled via the batch's scheduler (unless one is already scheduled).
Add an item to the batch. Schedules the batch for processing if the batch was empty and is not already scheduled. (Does nothing if the item is already in the batch.)
Is the item in the batch?
Is the batch currently empty?
Is the batch processing function currently running?
A generic batch processing queue, implemented as a set. (So items are processed at most once per batch run.)