Examples of AMQPProducer


Examples of org.archive.modules.AMQPProducer

    transient protected AMQPProducer amqpProducer;

    protected AMQPProducer amqpProducer() {
        if (amqpProducer == null) {
            amqpProducer = new AMQPProducer(getAmqpUri(), getExchange(), getRoutingKey());
        }
        return amqpProducer;
    }
View Full Code Here

Examples of org.graylog2.radio.transports.amqp.AMQPProducer

    @Override
    public RadioTransport get() {
        switch (configuration.getTransportType()) {
            case AMQP:
                return new AMQPProducer(metricRegistry, configuration, serverStatus);
            case KAFKA:
                return new KafkaProducer(serverStatus, configuration, metricRegistry);
            default:
                throw new RuntimeException("Cannot map transport type to transport.");
        }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.