Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/xstate/src/system.ts>Scheduler

Actor-based state management & orchestration for complex app logic.
Latest
interface Scheduler
import { type Scheduler } from "https://deno.land/x/xstate@xstate%405.14.0/src/system.ts";

Methods

schedule(
source: AnyActorRef,
target: AnyActorRef,
event: EventObject,
delay: number,
id: string | undefined,
): void
cancel(source: AnyActorRef, id: string): void
cancelAll(actorRef: AnyActorRef): void