MCPcopy Create free account
hub / github.com/apache/qpid-proton / on_released

Method on_released

python/proton/_handlers.py:114–124  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

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 """

Callers 1

on_deliveryMethod · 0.95

Calls 1

_dispatchFunction · 0.85

Tested by

no test coverage detected