Dispatcher Options

Scheduler

export interface DispatcherOptions {
    scheduler?: SchedulerLike;
}

RxJs has given to us a lot of tools to control our event streams. The most powerful from their are Schedulers.

Scheduler allows us to control when values of stream - in our case - FoxEvents - would be emitted.

More details you can read in a Guide from RxJs-team - https://rxjs.dev/guide/scheduler

Last updated