blessed-components - v1.20.0
    Preparing search index...

    Interface JobQueueItem

    One job displayed by JobQueue.

    interface JobQueueItem {
        cancellable?: boolean;
        detail?: string;
        id: string;
        label: string;
        progress?: number;
        retry?: JobQueueRetry;
        retryable?: boolean;
        status: JobQueueStatus;
    }
    Index

    Properties

    cancellable?: boolean

    Whether the caller currently permits cancellation.

    detail?: string

    Optional secondary status text.

    id: string

    Stable job identifier.

    label: string

    Human-readable job label.

    progress?: number

    Completion percentage from 0 through 100.

    Retry attempt and schedule metadata.

    retryable?: boolean

    Whether the caller currently permits a retry.

    Current lifecycle state.