Interface AddCachingTaskEvent

Fired when a caching task is added.

interface AddCachingTaskEvent {
    date: Date;
    task: CachingTask;
    type: "addtask";
}

Hierarchy (view full)

  • Event<"addtask">
    • AddCachingTaskEvent

Properties

Properties

date: Date

The creation date of the event.

The task which has been added.

type: "addtask"

The type of the event.