Represents tasks executed by the TaskExecutor.

interface Task {
    equals(other: Task): boolean;
    (): void;
}
  • Executes the task

    Returns void

Methods

Methods

  • Returns true if this equals other.

    Parameters

    Returns boolean