List of usage examples for com.rabbitmq.client Connection interface-usage
From source file com.novemberain.langohr.Connection.java
/** * Alternative {@link com.rabbitmq.client.Connection} implementation that wraps * {@link com.rabbitmq.client.impl.AMQConnection} and adds automatic connection * recovery capability to it. */ public class Connection implements com.rabbitmq.client.Connection, Recoverable {
From source file de.htwk_leipzig.bis.connection.handshake.clientRewrite.Copyright.java
/**
* Concrete class representing and managing an AMQP connection to a broker.
* <p>
* To create a broker connection, use {@link ConnectionFactory}. See
* {@link Connection} for an example.
*/
From source file io.opentracing.contrib.rabbitmq.TracingConnection.java
public class TracingConnection implements Connection { private final Connection connection; private final Tracer tracer;
From source file org.apache.nifi.amqp.processors.TestConnection.java
/**
* Implementation of {@link Connection} to be used for testing. Will return the
* same instance of {@link Channel} when {@link #createChannel()} is called.
*
* This class essentially emulates AMQP system and attempts to ensure the same
* behavior on publish/subscribe and other core operations used by the NIFI AMQP
From source file org.springframework.amqp.rabbit.connection.SimpleConnection.java
/**
* Simply a Connection.
* @author Dave Syer
* @author Gary Russell
* @since 1.0
*
From source file org.wildfly.connector.rabbitmq.RabbitmqConnection.java
/** * RabbitmqConnection * * @version $Revision: $ */ public interface RabbitmqConnection extends Connection {
From source file reactor.rabbitmq.IdempotentClosedConnection.java
/**
* Implement {@link Connection} that ensure closing is idempotent.
* It is used internally to share the same AMQP connection between
* {@link Sender} and {@link Receiver} instances, e.g. to use exclusive
* resources.
*/