Stone.js API
    Preparing search index...

    The stone.keyRouting configuration bucket.

    interface KeyRoutingConfig {
        definitions?: KeyRouteDefinition[];
        extractor?: KeyRoutingExtractor;
        handlers?: KeyHandlerDefinition[];
        source?: string;
        strict?: boolean;
    }

    Hierarchy (View Summary)

    Index
    definitions?: KeyRouteDefinition[]

    Explicit key-route definitions.

    A full extractor, taking precedence over source.

    Handler classes (with @OnKey methods) to scan and register.

    source?: string

    The incoming-event property holding the routing key (defaults to detail-type).

    strict?: boolean

    Throw when a key is missing/unmatched instead of no-op (defaults to false).