@@ -323,26 +323,28 @@ Queue.DeclareOk queueDeclare(int ticket, String queue, boolean passive, boolean
323323 * Unbinds a queue from an exchange, with no extra arguments.
324324 * @see com.rabbitmq.client.AMQP.Queue.Unbind
325325 * @see com.rabbitmq.client.AMQP.Queue.UnbindOk
326+ * @param ticket an access ticket for the appropriate realm
326327 * @param queue the name of the queue
327328 * @param exchange the name of the exchange
328329 * @param routingKey the routine key to use for the binding
329330 * @return an unbinding-confirm method if the binding was successfully deleted
330331 * @throws java.io.IOException if an error is encountered
331332 */
332- Queue .UnbindOk queueUnbind (String queue , String exchange , String routingKey ) throws IOException ;
333+ Queue .UnbindOk queueUnbind (int ticket , String queue , String exchange , String routingKey ) throws IOException ;
333334
334335 /**
335336 * Unbind a queue from an exchange.
336337 * @see com.rabbitmq.client.AMQP.Queue.Unbind
337338 * @see com.rabbitmq.client.AMQP.Queue.UnbindOk
339+ * @param ticket an access ticket for the appropriate realm
338340 * @param queue the name of the queue
339341 * @param exchange the name of the exchange
340342 * @param routingKey the routine key to use for the binding
341343 * @param arguments other properties (binding parameters)
342344 * @return an unbinding-confirm method if the binding was successfully deleted
343345 * @throws java.io.IOException if an error is encountered
344346 */
345- Queue .UnbindOk queueUnbind (String queue , String exchange , String routingKey , Map <String , Object > arguments ) throws IOException ;
347+ Queue .UnbindOk queueUnbind (int ticket , String queue , String exchange , String routingKey , Map <String , Object > arguments ) throws IOException ;
346348
347349 /**
348350 * Retrieve a message from a queue using {@link com.rabbitmq.client.AMQP.Basic.Get}
0 commit comments