async-scheduler
Version:
 
16 lines (15 loc) • 431 B
TypeScript
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;
}