nestjs-temporal-core
    Preparing search index...

    Interface WorkerModuleOptions

    Legacy worker module options interface.

    Use TemporalOptions instead for new implementations.

    interface WorkerModuleOptions {
        activityClasses?: Type<object>[];
        allowWorkerFailure?: boolean;
        autoRestart?: boolean;
        autoStart?: boolean;
        connection?: {
            address?: string;
            apiKey?: string;
            metadata?: Record<string, string>;
            namespace?: string;
            tls?: boolean | object;
        };
        enableLogger?: boolean;
        logLevel?: LogLevel;
        taskQueue?: string;
        workerOptions?: WorkerCreateOptions;
        workflowBundle?: Record<string, unknown>;
        workflowsPath?: string;
    }
    Index

    Properties

    activityClasses?: Type<object>[]
    allowWorkerFailure?: boolean
    autoRestart?: boolean
    autoStart?: boolean
    connection?: {
        address?: string;
        apiKey?: string;
        metadata?: Record<string, string>;
        namespace?: string;
        tls?: boolean | object;
    }
    enableLogger?: boolean
    logLevel?: LogLevel
    taskQueue?: string
    workerOptions?: WorkerCreateOptions
    workflowBundle?: Record<string, unknown>
    workflowsPath?: string