Skip to content

Commit

Permalink
Merge pull request golevelup#75 from golevelup/fix/add_addition_queue…
Browse files Browse the repository at this point in the history
…_options

fix(rabbitmq): add missing queue options
  • Loading branch information
WonderPanda authored Dec 19, 2019
2 parents bd4e4c2 + 0f37fb6 commit c19177e
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions packages/rabbitmq/src/rabbitmq.interfaces.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,14 @@ export interface RequestOptions {
export interface QueueOptions {
durable?: boolean;
exclusive?: boolean;
autoDelete?: boolean;
arguments?: any;
messageTtl?: number;
expires?: number;
deadLetterExchange?: string;
deadLetterRoutingKey?: string;
maxLength?: number;
maxPriority?: number;
}

export enum MessageHandlerErrorBehavior {
Expand Down

0 comments on commit c19177e

Please sign in to comment.