Backstage
    Preparing search index...

    Interface SchedulerServiceTaskInvocationDefinition

    Options that apply to the invocation of a given task.

    interface SchedulerServiceTaskInvocationDefinition {
        fn: SchedulerServiceTaskFunction;
        id: string;
        signal?: AbortSignal;
    }
    Index

    Properties

    Properties

    The actual task function to be invoked regularly.

    id: string

    A unique ID (within the scope of the plugin) for the task.

    signal?: AbortSignal

    An abort signal that, when triggered, will stop the recurring execution of the task.