@camunda8/orchestration-cluster-api
    Preparing search index...

    Interface CamundaEffectWorkerHandle

    A handle to a running Effect worker.

    interface CamundaEffectWorkerHandle {
        interrupt: Effect<void>;
        join: Effect<void, DomainError>;
        type: string;
    }
    Index
    interrupt: Effect<void>

    Interrupt the worker (also happens automatically when the owning scope closes).

    join: Effect<void, DomainError>

    Completes when the worker loop ends (only on a fatal, non-retryable activation error).

    type: string

    The job type this worker activates.