@@ -320,31 +320,29 @@ Queue.DeclareOk queueDeclare(int ticket, String queue, boolean passive, boolean
320320 Queue .BindOk queueBind (int ticket , String queue , String exchange , String routingKey , Map <String , Object > arguments ) throws IOException ;
321321
322322 /**
323- * Uninds a queue from an exchange, with no extra arguments.
323+ * 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
327326 * @param queue the name of the queue
328327 * @param exchange the name of the exchange
329328 * @param routingKey the routine key to use for the binding
330329 * @return an unbinding-confirm method if the binding was successfully deleted
331330 * @throws java.io.IOException if an error is encountered
332331 */
333- Queue .UnbindOk queueUnbind (int ticket , String queue , String exchange , String routingKey ) throws IOException ;
332+ Queue .UnbindOk queueUnbind (String queue , String exchange , String routingKey ) throws IOException ;
334333
335334 /**
336335 * Unbind a queue from an exchange.
337336 * @see com.rabbitmq.client.AMQP.Queue.Unbind
338337 * @see com.rabbitmq.client.AMQP.Queue.UnbindOk
339- * @param ticket an access ticket for the appropriate realm
340338 * @param queue the name of the queue
341339 * @param exchange the name of the exchange
342340 * @param routingKey the routine key to use for the binding
343341 * @param arguments other properties (binding parameters)
344342 * @return an unbinding-confirm method if the binding was successfully deleted
345343 * @throws java.io.IOException if an error is encountered
346344 */
347- Queue .UnbindOk queueUnbind (int ticket , String queue , String exchange , String routingKey , Map <String , Object > arguments ) throws IOException ;
345+ Queue .UnbindOk queueUnbind (String queue , String exchange , String routingKey , Map <String , Object > arguments ) throws IOException ;
348346
349347 /**
350348 * Retrieve a message from a queue using {@link com.rabbitmq.client.AMQP.Basic.Get}
0 commit comments