Called when the remote peer releases an outgoing message. Note that this may be in response to either the ``RELEASE`` or ``MODIFIED`` state as defined by the AMQP specification. :param event: The underlying event object. Use this to obtain further inform
(self, event: Event)
| 112 | _dispatch(self.delegate, 'on_rejected', event) |
| 113 | |
| 114 | def on_released(self, event: Event): |
| 115 | """ |
| 116 | Called when the remote peer releases an outgoing message. Note |
| 117 | that this may be in response to either the ``RELEASE`` or ``MODIFIED`` |
| 118 | state as defined by the AMQP specification. |
| 119 | |
| 120 | :param event: The underlying event object. Use this to obtain further |
| 121 | information on the event. |
| 122 | """ |
| 123 | if self.delegate is not None: |
| 124 | _dispatch(self.delegate, 'on_released', event) |
| 125 | |
| 126 | def on_settled(self, event: Event): |
| 127 | """ |
no test coverage detected