Interface RemoveCachingTaskEvent

Fired when a caching task is removed.

interface RemoveCachingTaskEvent {
    date: Date;
    task: CachingTask;
    type: "removetask";
}

Hierarchy (view full)

  • Event<"removetask">
    • RemoveCachingTaskEvent

Properties

Properties

date: Date

The creation date of the event.

The task which has been removed.

type: "removetask"

The type of the event.