We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 302e10d commit 7b16a33Copy full SHA for 7b16a33
src/main/java/com/rabbitmq/client/QueueingConsumer.java
@@ -28,6 +28,9 @@
28
* Convenience class: an implementation of {@link Consumer} with
29
* straightforward blocking semantics.
30
*
31
+ * Deprecated in favor of {@link Consumer} (see below for background).
32
+ * Will be removed in next major release.
33
+ *
34
* The general pattern for using QueueingConsumer is as follows:
35
36
* <pre>
@@ -83,6 +86,8 @@
83
86
* As such, it is now safe to implement <code>Consumer</code> directly or
84
87
* to extend <code>DefaultConsumer</code> and <code>QueueingConsumer</code>
85
88
* is a lot less relevant.</p>
89
90
+ * @deprecated
91
*/
92
public class QueueingConsumer extends DefaultConsumer {
93
private final BlockingQueue<Delivery> _queue;
0 commit comments