Skip to main content
The Deno 2 Release Candidate is here
Learn more
Module

x/entropy/src/scheduler/scheduler.service.ts>Scheduler

The core module of Entropy framework for Deno.
Latest
class Scheduler
import { Scheduler } from "https://deno.land/x/entropy@1.0.0-beta.17/src/scheduler/scheduler.service.ts";

Methods

interval(milliseconds: number, callback: () => void | Promise<void>): void
schedule(
identifier: string,
schedule: string | Deno.CronSchedule,
callback: () => void | Promise<void>,
): void
timeout(milliseconds: number, callback: () => void | Promise<void>): void