haredo

    Interface HaredoOptions

    interface HaredoOptions {
        adapter?: Adapter;
        autoConnect?: boolean;
        defaults?: { appId?: string; concurrency?: number };
        extensions?: Extension[];
        globalMiddleware?: Middleware<unknown>[];
        log?: LogFunction;
        reconnectDelay?: number | ((attempt: number) => number);
        tlsOptions?: AMQPTlsOptions;
        url: string | RabbitUrl;
    }
    Index

    Properties

    adapter?: Adapter

    Adapter to use for commands to the broker. Useful for testing.

    autoConnect?: boolean

    If true then the connection will be made automatically. Otherwise .connect() should be called before attempting to do any operations.

    false
    
    defaults?: { appId?: string; concurrency?: number }

    Type declaration

    • OptionalappId?: string

      The name of the application. This will be used as the appId when publishing messages.

    • Optionalconcurrency?: number

      The default concurrency to use for consumers. This can be overridden by calling .concurrency (or it's alias, .prefetch) on the chain.

    extensions?: Extension[]

    Additional methods to add to the chains.

    globalMiddleware?: Middleware<unknown>[]

    Add global middlewares to be run for all consumers

    reconnectDelay?: number | ((attempt: number) => number)

    Delay in milliseconds before trying to reconnect to the broker after a connection failure.

    500
    
    tlsOptions?: AMQPTlsOptions

    TLS options to use when connecting to the broker

    url: string | RabbitUrl
    MMNEPVFCICPMFPCPTTAAATR