Example usage for com.rabbitmq.client ReturnListener interface-usage

List of usage examples for com.rabbitmq.client ReturnListener interface-usage

Introduction

In this page you can find the example usage for com.rabbitmq.client ReturnListener interface-usage.

Usage

From source file net.roboconf.messaging.internal.client.rabbitmq.DmReturnListener.java

/**
 * @author Vincent Zurczak - Linagora
 */
public class DmReturnListener implements ReturnListener {

    private final Logger logger = Logger.getLogger(getClass().getName());

From source file net.roboconf.messaging.rabbitmq.internal.impl.RoboconfReturnListener.java

/**
 * @author Vincent Zurczak - Linagora
 */
public class RoboconfReturnListener implements ReturnListener {

    private final Logger logger = Logger.getLogger(getClass().getName());

From source file org.apache.flink.streaming.connectors.rabbitmq.SerializableReturnListener.java

/**
 * A serializable {@link ReturnListener}.
 */
public interface SerializableReturnListener extends Serializable, ReturnListener {
}

From source file org.mule.transport.amqp.internal.client.AbstractAmqpReturnHandlerListener.java

public abstract class AbstractAmqpReturnHandlerListener implements ReturnListener {

    public void handleReturn(final int replyCode, final String replyText, final String exchange,
            final String routingKey, final AMQP.BasicProperties properties, final byte[] body) throws IOException {
        final String errorMessage = String.format(
                "AMQP returned message with code: %d, reason: %s, exchange: %s, routing key: %s", replyCode,

From source file org.smartdeveloperhub.harvesters.it.notification.LoggingReturnListener.java

final class LoggingReturnListener implements ReturnListener {

    private static final Logger LOGGER = LoggerFactory.getLogger(LoggingReturnListener.class);

    LoggingReturnListener() {
    }

From source file org.smartdeveloperhub.harvesters.scm.backend.notification.LoggingReturnListener.java

final class LoggingReturnListener implements ReturnListener {

    private static final Logger LOGGER = LoggerFactory.getLogger(LoggingReturnListener.class);

    LoggingReturnListener() {
    }

From source file org.springframework.amqp.rabbit.support.PublisherCallbackChannelImpl.java

/**
 * Channel wrapper to allow a single listener able to handle
 * confirms from multiple channels.
 *
 * @author Gary Russell
 * @since 1.0.1

From source file vn.com.uet.performance.rabbitmq.Producer.java

public class Producer extends ProducerConsumerBase implements Runnable, ReturnListener, ConfirmListener {
    private final Channel channel;
    private final String exchangeName;
    private final String id;
    private final boolean randomRoutingKey;
    private final boolean mandatory;