Interface BaseRmqOptions

interface BaseRmqOptions {
    consumerTag?: string;
    deserializer?: Deserializer<any, any>;
    headers?: Record<string, string>;
    isGlobalPrefetchCount?: boolean;
    maxConnectionAttempts?: number;
    noAck?: boolean;
    noAssert?: boolean;
    persistent?: boolean;
    prefetchCount?: number;
    replyQueue?: string;
    serializer?: Serializer<any, any>;
    socketOptions?: AmqpConnectionManagerOptions;
    urls?: string[] | RmqUrl[];
}

Hierarchy (View Summary)

Properties

consumerTag?: string
deserializer?: Deserializer<any, any>
headers?: Record<string, string>
isGlobalPrefetchCount?: boolean
maxConnectionAttempts?: number

Maximum number of connection attempts. Applies only to the consumer configuration. -1 === infinite

-1
noAck?: boolean
noAssert?: boolean
persistent?: boolean
prefetchCount?: number
replyQueue?: string
serializer?: Serializer<any, any>
socketOptions?: AmqpConnectionManagerOptions
urls?: string[] | RmqUrl[]