nestjs-temporal-core
    Preparing search index...

    Interface WorkerInstance

    Individual worker instance with metadata Internal structure used by TemporalWorkerManagerService

    interface WorkerInstance {
        activities: Map<string, Function>;
        isInitialized: boolean;
        isRunning: boolean;
        lastError: string | null;
        namespace: string;
        restartCount: number;
        startedAt: Date | null;
        taskQueue: string;
        worker: Worker;
        workflowSource: "bundle" | "filesystem" | "registered" | "none";
    }
    Index

    Properties

    activities: Map<string, Function>
    isInitialized: boolean
    isRunning: boolean
    lastError: string | null
    namespace: string
    restartCount: number
    startedAt: Date | null
    taskQueue: string
    worker: Worker
    workflowSource: "bundle" | "filesystem" | "registered" | "none"