You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+2
Original file line number
Diff line number
Diff line change
@@ -61,6 +61,8 @@ After some searching, it was a bug in the 3rd party library and my code, that wa
61
61
62
62
*`GET /authentification-done-with-success-on/$USERNAME` return if a client has successfully connected with the given username
63
63
*`GET /messages-acknowledged/$DELIVERY_TAG` this call will block until the given delivery tag was acknowledged as consumed by a worker, if the message has already been consumed before the call, the call directly returns. => this call is super pratical to write your integration tests (i.e to check if you worker has written a record in database after the message was consumed)
64
+
*`GET /messages-not-acknowledged/$DELIVERY_TAG` this call will block until the given delivery tag was marked as rejected by a worker (basic_nack), if the message has already been rejected before the call, the call directly returns. => this call is super practical to write your integration tests (i.e worker rejected the message for any reason)
65
+
*`GET /messages-requeued/$DELIVERY_TAG` this call will block until the given delivery tag was marked as rejected by a worker with requeue parameter to true (basic_nack with requeue), if the message has already been requeued before the call, the call directly returns. => this call is super practical to write your integration tests (i.e worker rejected the message to be treated later)
64
66
*`GET /messages-in-queue/$QUEUE_NAME` get all the messages waiting to be consumed in a given queue
65
67
*`GET /messages-in-exchange/$EXCHANGE_NAME` get all the messages waiting to be consumed in a given exchange
66
68
*`GET /queue-bound-to-exchange/$QUEUE_NAME/$EXCHANGE_NAME` wait until a given queue is bound to the given exchange
0 commit comments