interface ProducerOptions {
    agingInterval?: number;
    id: string;
    logger?: LoggerInstance;
    lookupInterval?: number;
    lookupTimeout?: number;
    maxAge?: number;
    maxInactivityTime?: number;
    registerLimit?: number;
    registry?: Registry;
    retryOptions?: RetryOptions;
}

Hierarchy (View Summary)

Properties

agingInterval?: number
id: string

Instance identification

Logger instance

lookupInterval?: number

Lookup interval in milliseconds

lookupTimeout?: number

Lookup timeout in milliseconds

maxAge?: number

Max allowed age in in milliseconds for a table entry

maxInactivityTime?: number

Register max inactivity time

registerLimit?: number

Maximum number of message to be stored

registry?: Registry

Message and jobs registry

retryOptions?: RetryOptions

Options for adapter retry operations