Stone.js API
    Preparing search index...

    A registered job-handler meta-module (stone.queue.handlers).

    interface JobHandlerMeta {
        action?: string;
        isClass?: boolean;
        isFactory?: boolean;
        module: unknown;
        name?: string;
    }
    Index
    action?: string

    The class method to call (defaults to handle) when isClass/isFactory.

    isClass?: boolean

    Whether module is a class to resolve from the container.

    isFactory?: boolean

    Whether module is a factory to resolve from the container.

    module: unknown

    The handler: a class, a factory, or a function/instance.

    name?: string

    The job name this handler processes. Omitted for classes that only carry @OnJob methods.