Package eu.mosaic_cloud.drivers.queue.amqp

Examples of eu.mosaic_cloud.drivers.queue.amqp.AmqpDriver.declareExchange()


        autoDelete = declExchange.getAutoDelete ();
        passive = declExchange.getPassive ();
        AmqpStub.logger.trace ("AmqpStub - Received request for DECLARE EXCHANGE "); // $NON-NLS-1$
        // NOTE: execute operation
        final DriverOperationFinishedHandler exchHandler = new DriverOperationFinishedHandler (token, session);
        resultBool = driver.declareExchange (token.getClientId (), exchange, AmqpExchangeType.valueOf (type.toString ().toUpperCase ()), durable, autoDelete, passive, exchHandler);
        exchHandler.setDetails (AmqpOperations.DECLARE_EXCHANGE, resultBool);
        break;
      case DECL_QUEUE_REQUEST :
        final AmqpPayloads.DeclareQueueRequest declQueue = (DeclareQueueRequest) message.payload;
        token = declQueue.getToken ();
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.