> For the complete documentation index, see [llms.txt](https://angkira.gitbook.io/foxstore/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://angkira.gitbook.io/foxstore/api-reference/store-options/dispatcher-options.md).

# Dispatcher Options

### Scheduler

```typescript
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>
