@@ -77,35 +77,35 @@ public interface Channel extends ShutdownNotifier{
7777 /**
7878 * Close this channel with the {@link com.rabbitmq.client.AMQP#REPLY_SUCCESS} close code
7979 * and message 'OK'.
80- *
80+ *
8181 * @throws java.io.IOException if an error is encountered
8282 */
8383 void close () throws IOException ;
84-
84+
8585 /**
8686 * Close this channel.
87- *
87+ *
8888 * @param closeCode the close code (See under "Reply Codes" in the AMQP specification)
8989 * @param closeMessage a message indicating the reason for closing the connection
9090 * @throws java.io.IOException if an error is encountered
9191 */
9292 void close (int closeCode , String closeMessage ) throws IOException ;
93-
93+
9494 /**
9595 * Abort this channel with the {@link com.rabbitmq.client.AMQP#REPLY_SUCCESS} close code
9696 * and message 'OK'.
97- *
97+ *
9898 * Forces the channel to close and waits for the close operation to complete.
9999 * Any encountered exceptions in the close operation are silently discarded.
100100 */
101101 void abort () throws IOException ;
102-
102+
103103 /**
104104 * Abort this channel.
105- *
105+ *
106106 * Forces the channel to close and waits for the close operation to complete.
107107 * Any encountered exceptions in the close operation are silently discarded.
108- */
108+ */
109109 void abort (int closeCode , String closeMessage ) throws IOException ;
110110
111111 /**
@@ -254,7 +254,7 @@ Exchange.DeclareOk exchangeDeclare(String exchange, String type, boolean passive
254254 * @throws java.io.IOException if an error is encountered
255255 */
256256 Queue .DeclareOk queueDeclare (String queue ) throws IOException ;
257-
257+
258258 /**
259259 * Actively declare a non-exclusive, non-autodelete queue
260260 * The name of the new queue is held in the "queue" field of the {@link com.rabbitmq.client.AMQP.Queue.DeclareOk} result.
@@ -329,7 +329,7 @@ Queue.DeclareOk queueDeclare(String queue, boolean passive, boolean durable, boo
329329 * @throws java.io.IOException if an error is encountered
330330 */
331331 Queue .BindOk queueBind (String queue , String exchange , String routingKey , Map <String , Object > arguments ) throws IOException ;
332-
332+
333333 /**
334334 * Unbinds a queue from an exchange, with no extra arguments.
335335 * @see com.rabbitmq.client.AMQP.Queue.Unbind
@@ -370,7 +370,7 @@ Queue.DeclareOk queueDeclare(String queue, boolean passive, boolean durable, boo
370370 * @see com.rabbitmq.client.AMQP.Queue.Purge
371371 * @see com.rabbitmq.client.AMQP.Queue.PurgeOk
372372 * @param queue the name of the queue
373- * @param nowait whether to await completion of the purge
373+ * @param nowait whether to await completion of the purge
374374 * @return a purge-confirm method if the purge was executed succesfully
375375 * @throws java.io.IOException if an error is encountered
376376 */
0 commit comments