@@ -14,8 +14,8 @@ Advanced Queuing
14
14
Queues
15
15
------
16
16
17
- Queues are created using the :meth: `Connection.queue() ` method and are used to
18
- enqueue and dequeue messages.
17
+ These objects are created using the :meth: `Connection.queue() ` method and are
18
+ used to enqueue and dequeue messages.
19
19
20
20
.. attribute :: Queue.connection
21
21
@@ -82,9 +82,9 @@ Dequeue Options
82
82
83
83
.. note ::
84
84
85
- This object is an extension to the DB API. It is returned by the
86
- :meth: ` Connection.deqoptions() ` call and is used in calls to
87
- :meth: ` Connection.deq() `.
85
+ These objects are used to configure how messages are dequeued from queues.
86
+ An instance of this object is found in the attribute
87
+ :attr: ` Queue.deqOptions `.
88
88
89
89
90
90
.. attribute :: DeqOptions.condition
@@ -177,9 +177,9 @@ Enqueue Options
177
177
178
178
.. note ::
179
179
180
- This object is an extension to the DB API. It is returned by the
181
- :meth: ` Connection.enqoptions() ` call and is used in calls to
182
- :meth: ` Connection.enq() `.
180
+ These objects are used to configure how messages are enqueued into queues.
181
+ An instance of this object is found in the attribute
182
+ :attr: ` Queue.enqOptions `.
183
183
184
184
185
185
.. attribute :: EnqOptions.deliverymode
@@ -213,9 +213,11 @@ Message Properties
213
213
214
214
.. note ::
215
215
216
- This object is an extension to the DB API. It is returned by the
217
- :meth: `Connection.msgproperties() ` call and is used in calls to
218
- :meth: `Connection.deq() ` and :meth: `Connection.enq() `.
216
+ These objects are used to identify the properties of messages that are
217
+ enqueued and dequeued in queues. They are created by the method
218
+ :meth: `Connection.msgproperties() `. They are used by the methods
219
+ :meth: `Queue.enqOne() ` and :meth: `Queue.enqMany() ` and
220
+ returned by the methods :meth: `Queue.deqOne() ` and :meth: `Queue.deqMany() `.
219
221
220
222
221
223
.. attribute :: MessageProperties.attempts
0 commit comments