@@ -478,7 +478,7 @@ Queue.DeclareOk queueDeclare(String queue, boolean durable, boolean exclusive, b
478478 * @see com.rabbitmq.client.AMQP.Basic.Consume
479479 * @see com.rabbitmq.client.AMQP.Basic.ConsumeOk
480480 * @see #basicAck
481- * @see #basicConsume(String,boolean, String,boolean,boolean, Consumer)
481+ * @see #basicConsume(String,boolean, String,boolean,boolean, Map, Consumer)
482482 */
483483 String basicConsume (String queue , Consumer callback ) throws IOException ;
484484
@@ -492,7 +492,7 @@ Queue.DeclareOk queueDeclare(String queue, boolean durable, boolean exclusive, b
492492 * @throws java.io.IOException if an error is encountered
493493 * @see com.rabbitmq.client.AMQP.Basic.Consume
494494 * @see com.rabbitmq.client.AMQP.Basic.ConsumeOk
495- * @see #basicConsume(String,boolean, String,boolean,boolean, Consumer)
495+ * @see #basicConsume(String,boolean, String,boolean,boolean, Map, Consumer)
496496 */
497497 String basicConsume (String queue , boolean noAck , Consumer callback ) throws IOException ;
498498
@@ -506,7 +506,7 @@ Queue.DeclareOk queueDeclare(String queue, boolean durable, boolean exclusive, b
506506 * @throws java.io.IOException if an error is encountered
507507 * @see com.rabbitmq.client.AMQP.Basic.Consume
508508 * @see com.rabbitmq.client.AMQP.Basic.ConsumeOk
509- * @see #basicConsume(String,boolean, String,boolean,boolean, Consumer)
509+ * @see #basicConsume(String,boolean, String,boolean,boolean, Map, Consumer)
510510 */
511511 String basicConsume (String queue , boolean noAck , String consumerTag , Consumer callback ) throws IOException ;
512512
@@ -524,7 +524,7 @@ Queue.DeclareOk queueDeclare(String queue, boolean durable, boolean exclusive, b
524524 * @see com.rabbitmq.client.AMQP.Basic.Consume
525525 * @see com.rabbitmq.client.AMQP.Basic.ConsumeOk
526526 */
527- String basicConsume (String queue , boolean noAck , String consumerTag , boolean noLocal , boolean exclusive , Consumer callback ) throws IOException ;
527+ String basicConsume (String queue , boolean noAck , String consumerTag , boolean noLocal , boolean exclusive , Map < String , Object > filter , Consumer callback ) throws IOException ;
528528
529529 /**
530530 * Cancel a consumer. Calls the consumer's {@link Consumer#handleCancelOk}
0 commit comments