@camunda8/sdk
    Preparing search index...

    Interface ZBWorkerConstructorConfig<WorkerInputVariables, CustomHeaderShape, WorkerOutputVariables>

    interface ZBWorkerConstructorConfig<
        WorkerInputVariables,
        CustomHeaderShape,
        WorkerOutputVariables,
    > {
        customHeadersDto?: new (...args: any[]) => Readonly<CustomHeaderShape>;
        grpcClient: ZBGrpc;
        id: null | string;
        idColor: Chalk;
        inputVariableDto?: new (...args: any[]) => Readonly<WorkerInputVariables>;
        log: StatefulLogInterceptor;
        options: ZBWorkerOptions<WorkerInputVariables> & ZBClientOptions;
        taskHandler: ZBWorkerTaskHandler<
            WorkerInputVariables,
            CustomHeaderShape,
            WorkerOutputVariables,
        >;
        taskType: string;
        tenantIds: undefined
        | string[]
        | [string];
        zbClient: ZeebeGrpcClient;
    }

    Type Parameters

    • WorkerInputVariables
    • CustomHeaderShape
    • WorkerOutputVariables
    Index

    Properties

    customHeadersDto?: new (...args: any[]) => Readonly<CustomHeaderShape>
    grpcClient: ZBGrpc
    id: null | string
    idColor: Chalk
    inputVariableDto?: new (...args: any[]) => Readonly<WorkerInputVariables>
    taskType: string
    tenantIds: undefined | string[] | [string]
    zbClient: ZeebeGrpcClient