@camunda8/sdk
    Preparing search index...

    Interface StreamActivatedJobsRequest

    interface StreamActivatedJobsRequest {
        fetchVariable?: string[];
        tenantIds: string[];
        timeout: MaybeTimeDuration;
        type: string;
        worker: string;
    }
    Index

    Properties

    fetchVariable?: string[]

    a list of variables to fetch as the job variables; if empty, all visible variables at the time of activation for the scope of the job will be returned

    tenantIds: string[]

    a list of identifiers of tenants for which to stream jobs

    timeout: MaybeTimeDuration

    a job returned after this call will not be activated by another call until the timeout (in ms) has been reached

    type: string

    the job type, as defined in the BPMN process (e.g. <zeebe:taskDefinition type="payment-service" />)

    worker: string

    the name of the worker activating the jobs, mostly used for logging purposes