1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81
|
##########################
Module ``proton.handlers``
##########################
.. currentmodule:: proton.handlers
Module Summary
##############
|
+-------------------------------------+----------------------------------------------------------------------------------------+
| :class:`MessagingHandler` | A general purpose handler that makes the proton-c events somewhat simpler to deal with |
| | and/or avoids repetitive tasks for common use cases. |
+-------------------------------------+----------------------------------------------------------------------------------------+
| :class:`TransactionHandler` | The interface for transaction handlers - ie objects that want to be notified of state |
| | changes related to a transaction. |
+-------------------------------------+----------------------------------------------------------------------------------------+
| :class:`TransactionalClientHandler` | An extension to the MessagingHandler for applications using transactions. |
+-------------------------------------+----------------------------------------------------------------------------------------+
|
Exceptions
==========
|
+------------------+-----------------------------------------------------------+
| :class:`Reject` | An exception that indicates a message should be rejected. |
+------------------+-----------------------------------------------------------+
| :class:`Release` | An exception that indicates a message should be released. |
+------------------+-----------------------------------------------------------+
|
Module Detail
#############
|
.. autoclass:: proton.handlers.MessagingHandler
:members:
:show-inheritance:
:inherited-members:
:undoc-members:
:exclude-members: handlers, add
------------
.. autoclass:: proton.handlers.TransactionHandler
:members:
:show-inheritance:
:inherited-members:
:undoc-members:
------------
.. autoclass:: proton.handlers.TransactionalClientHandler
:members:
:show-inheritance:
:inherited-members:
:undoc-members:
:exclude-members: handlers, add
------------
.. autoclass:: proton.handlers.Reject
:members:
:show-inheritance:
:inherited-members:
:undoc-members:
------------
.. autoclass:: proton.handlers.Release
:members:
:show-inheritance:
:inherited-members:
:undoc-members:
|