UNPKG

async-scheduler

Version:

![CI](https://github.com/kremi151/async-scheduler/workflows/CI/badge.svg) ![NPM](https://img.shields.io/npm/v/async-scheduler?color=green)

16 lines (15 loc) 431 B
import { SchedulerMutexStrategy } from "./SchedulerMutexStrategy"; export interface SchedulerOptions { /** * Whether or not to check mutexes only for tasks having the same priority */ samePriorityMutex?: boolean; /** * The strategy to use to detect mutex collisions */ mutexStrategy?: SchedulerMutexStrategy; /** * Whether to disable any logging */ disableLogging?: boolean; }