is a boolean informing the
GlobalScheduler
implementation that it can use the
nonstandard setImmediate
for scheduling asynchronous
tasks without extra delays.
the ExecutionModel to use for Scheduler.executionModel, should default to ExecutionModel.global
is the reporter to use for reporting uncaught
errors, defaults to console.error
Index of the current cycle, incremented automatically (modulo
the batch size) when doing execution by means of
Scheduler.executeBatched and the Scheduler
is
configured with ExecutionModel.batched.
When observed as being zero, it means an async boundary just happened.
Executes tasks in batches, according to the rules set by the given ExecutionModel.
The rules, depending on the chosen ExecutionModel
:
synchronous
, then all tasks are executed with
Scheduler.trampolineasynchronous
, then all tasks are executed with
Scheduler.executeAsyncbatched(n)
, then n
tasks will be executed
with Scheduler.trampoline
and then the next execution
will force an asynchronous boundary by means of
Scheduler.executeAsync
Thus, in case of batched execution, an internal counter gets
incremented to keep track of how many tasks where executed
immediately (trampolined), a counter that's reset when reaching
the threshold or when an executeAsync
happens.
The ExecutionModel is a specification of how run-loops and producers should behave in regards to executing tasks either synchronously or asynchronously.
Exposes a reusable GlobalScheduler reference by means of a DynamicRef, which allows for lexically scoped bindings to happen.
const myScheduler = new GlobalScheduler(false)
Scheduler.global.bind(myScheduler, () => {
Scheduler.global.get() // myScheduler
})
Scheduler.global.get() // default instance
Schedules a periodic task that becomes enabled first after the given
initial delay, and subsequently with the given period. Executions will
commence after initialDelay
then initialDelay + period
, then
initialDelay + 2 * period
and so on.
If any execution of the task encounters an exception, subsequent executions are suppressed. Otherwise, the task will only terminate via cancellation or termination of the scheduler. If any execution of this task takes longer than its period, then subsequent executions may start late, but will not concurrently execute.
For example the following schedules a message to be printed to standard output approximately every 10 seconds with an initial delay of 5 seconds:
const task =
s.scheduleAtFixedRate(Duration.seconds(5), Duration.seconds(10), () => {
console.log("repeated message")
})
// later if you change your mind ...
task.cancel()
is the time to wait until the first execution happens
is the time to wait between 2 successive executions of the task
is the thunk to be executed
a cancelable that can be used to cancel the execution of this repeated task at any time.
Schedules for execution a periodic task that is first executed after the given initial delay and subsequently with the given delay between the termination of one execution and the commencement of the next.
For example the following schedules a message to be printed to standard output every 10 seconds with an initial delay of 5 seconds:
const task =
s.scheduleWithFixedDelay(Duration.seconds(5), Duration.seconds(10), () => {
console.log("repeated message")
})
// later if you change your mind ...
task.cancel()
is the time to wait until the first execution happens
is the time to wait between 2 successive executions of the task
is the thunk to be executed
a cancelable that can be used to cancel the execution of this repeated task at any time.
Generated using TypeDoc
GlobalScheduler
is a Scheduler implementation based on Javascript's setTimeout and (if available and configured) setImmediate.