Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

TaskManager

import { TaskManager } from "https://raw.githubusercontent.com/mandarineorg/mandarinets/master/mod.ts";
class TaskManager {
private cronManager: CronManager;
private timerManager: TimerRegistry;
 
public getCronManager(): CronManager;
public getTimerManager(): TimerRegistry;
}

§Properties

§
cronManager: CronManager
[src]
§
timerManager: TimerRegistry
[src]

§Methods

§
getCronManager(): CronManager
[src]

Gives access to all the CRON Jobs scheduled in the Mandarine-powered application

@return

an instance of CronManager

§
getTimerManager(): TimerRegistry
[src]

Gives access to all the timers scheduled in the Mandarine-powered application

@return

an instance of TimerRegistry