Foxstore
  • Introduction
  • Base concepts
  • Store
  • Event handlers
  • Using store
    • Store by event scheme
    • Store by decorators
  • API Reference
    • Store
    • Handlers
    • Store options
      • Logging options
      • Saver
      • Dispatcher Options
Powered by GitBook
On this page

Was this helpful?

  1. API Reference
  2. Store options

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

PreviousSaver

Last updated 3 years ago

Was this helpful?