File tree Expand file tree Collapse file tree 2 files changed +12
-0
lines changed
projects/client/RabbitMQ.Client/src/client Expand file tree Collapse file tree 2 files changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -420,6 +420,14 @@ void BasicAck(ulong deliveryTag,
420
420
///<summary>(Spec method) Reject a delivered message.</summary>
421
421
void BasicReject ( ulong deliveryTag ,
422
422
bool requeue ) ;
423
+
424
+ ///<summary>Reject one or more delivered message(s).</summary>
425
+ [ AmqpUnsupported ( "RabbitMQ.Client.Framing.v0_8qpid" ) ]
426
+ [ AmqpUnsupported ( "RabbitMQ.Client.Framing.v0_8" ) ]
427
+ [ AmqpUnsupported ( "RabbitMQ.Client.Framing.v0_9" ) ]
428
+ void BasicNack ( ulong deliveryTag ,
429
+ bool multiple ,
430
+ bool requeue ) ;
423
431
424
432
///<summary>(Spec method)</summary>
425
433
[ AmqpMethodDoNotImplement ( null ) ]
Original file line number Diff line number Diff line change @@ -1037,6 +1037,10 @@ public abstract void BasicAck(ulong deliveryTag,
1037
1037
public abstract void BasicReject ( ulong deliveryTag ,
1038
1038
bool requeue ) ;
1039
1039
1040
+ public abstract void BasicNack ( ulong deliveryTag ,
1041
+ bool multiple ,
1042
+ bool requeue ) ;
1043
+
1040
1044
public abstract void BasicRecoverAsync ( bool requeue ) ;
1041
1045
1042
1046
public abstract void TxSelect ( ) ;
You can’t perform that action at this time.
0 commit comments