Stone.js API
    Preparing search index...

    A handler meta-module for imperative registration (mirrors the framework's { module, isClass?, isFactory? } meta-module shape, plus the routing key and optional action).

    interface KeyHandlerMeta {
        action?: string;
        isClass?: boolean;
        isFactory?: boolean;
        key: string;
        module: unknown;
    }
    Index
    action?: string

    The method to call when module is a class/factory instance (defaults to handle).

    isClass?: boolean

    Whether module is a class to resolve.

    isFactory?: boolean

    Whether module is a factory to resolve.

    key: string

    The key this handler answers (job name, event name, command name, route key…).

    module: unknown

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