RmqOptions


interface RmqOptions {
  transport?: Transport.RMQ
  options?: {...}
}

Properties

Property Description
transport?: Transport.RMQ
options?: { urls?: string[] | RmqUrl[]; queue?: string; prefetchCount?: number; isGlobalPrefetchCount?: boolean; queueOptions?: any; socketOptions?: any; noAck?: boolean; serializer?: Serializer; deserializer?: Deserializer; replyQueue?: string; persistent?: boolean; headers?: Record<string, string>; noAssert?: boolean; maxConnectionAttempts?: number; }