3131 * this interface are part of the public API.
3232 *
3333 * <h2>Tutorials</h2>
34- * <a href="http ://www.rabbitmq.com/getstarted.html">RabbitMQ tutorials</a> demonstrate how
34+ * <a href="https ://www.rabbitmq.com/getstarted.html">RabbitMQ tutorials</a> demonstrate how
3535 * key methods of this interface are used.
3636 *
3737 * <h2>User Guide</h2>
38- * See <a href="http ://www.rabbitmq.com/api-guide.html">Java Client User Guide</a>.
38+ * See <a href="https ://www.rabbitmq.com/api-guide.html">Java Client User Guide</a>.
3939 *
4040 * <h2>Concurrency Considerations</h2>
4141 * <p>
4646 * multiple threads. While some operations on channels are safe to invoke
4747 * concurrently, some are not and will result in incorrect frame interleaving
4848 * on the wire. Sharing channels between threads will also interfere with
49- * <a href="http ://www.rabbitmq.com/confirms.html">Publisher Confirms</a>.
49+ * <a href="https ://www.rabbitmq.com/confirms.html">Publisher Confirms</a>.
5050 *
5151 * As such, applications need to use a {@link Channel} per thread.
5252 * </p>
5353 *
54- * @see <a href="http ://www.rabbitmq.com/getstarted.html">RabbitMQ tutorials</a>
55- * @see <a href="http ://www.rabbitmq.com/api-guide.html">RabbitMQ Java Client User Guide</a>
54+ * @see <a href="https ://www.rabbitmq.com/getstarted.html">RabbitMQ tutorials</a>
55+ * @see <a href="https ://www.rabbitmq.com/api-guide.html">RabbitMQ Java Client User Guide</a>
5656 */
5757public interface Channel extends ShutdownNotifier {
5858 /**
@@ -260,10 +260,10 @@ public interface Channel extends ShutdownNotifier {
260260 * protocol exception, which closes the channel.
261261 *
262262 * Invocations of <code>Channel#basicPublish</code> will eventually block if a
263- * <a href="http ://www.rabbitmq.com/alarms.html">resource-driven alarm</a> is in effect.
263+ * <a href="https ://www.rabbitmq.com/alarms.html">resource-driven alarm</a> is in effect.
264264 *
265265 * @see com.rabbitmq.client.AMQP.Basic.Publish
266- * @see <a href="http ://www.rabbitmq.com/alarms.html">Resource-driven alarms</a>
266+ * @see <a href="https ://www.rabbitmq.com/alarms.html">Resource-driven alarms</a>
267267 * @param exchange the exchange to publish the message to
268268 * @param routingKey the routing key
269269 * @param props other properties for the message - routing headers etc
@@ -276,10 +276,10 @@ public interface Channel extends ShutdownNotifier {
276276 * Publish a message.
277277 *
278278 * Invocations of <code>Channel#basicPublish</code> will eventually block if a
279- * <a href="http ://www.rabbitmq.com/alarms.html">resource-driven alarm</a> is in effect.
279+ * <a href="https ://www.rabbitmq.com/alarms.html">resource-driven alarm</a> is in effect.
280280 *
281281 * @see com.rabbitmq.client.AMQP.Basic.Publish
282- * @see <a href="http ://www.rabbitmq.com/alarms.html">Resource-driven alarms</a>
282+ * @see <a href="https ://www.rabbitmq.com/alarms.html">Resource-driven alarms</a>
283283 * @param exchange the exchange to publish the message to
284284 * @param routingKey the routing key
285285 * @param mandatory true if the 'mandatory' flag is to be set
@@ -297,10 +297,10 @@ void basicPublish(String exchange, String routingKey, boolean mandatory, BasicPr
297297 * protocol exception, which closes the channel.
298298 *
299299 * Invocations of <code>Channel#basicPublish</code> will eventually block if a
300- * <a href="http ://www.rabbitmq.com/alarms.html">resource-driven alarm</a> is in effect.
300+ * <a href="https ://www.rabbitmq.com/alarms.html">resource-driven alarm</a> is in effect.
301301 *
302302 * @see com.rabbitmq.client.AMQP.Basic.Publish
303- * @see <a href="http ://www.rabbitmq.com/alarms.html">Resource-driven alarms</a>
303+ * @see <a href="https ://www.rabbitmq.com/alarms.html">Resource-driven alarms</a>
304304 * @param exchange the exchange to publish the message to
305305 * @param routingKey the routing key
306306 * @param mandatory true if the 'mandatory' flag is to be set
0 commit comments