Package eu.mosaic_cloud.drivers.queue.amqp

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


        final long delivery = aop.getDelivery ();
        final boolean multiple = aop.getMultiple ();
        AmqpStub.logger.trace ("AmqpStub - Received  ACK "); // $NON-NLS-1$
        // NOTE: execute operation
        final DriverOperationFinishedHandler ackHandler = new DriverOperationFinishedHandler (token, session);
        resultBool = driver.basicAck (token.getClientId (), delivery, multiple, ackHandler);
        ackHandler.setDetails (AmqpOperations.ACK, resultBool);
        break;
      default:
        final DriverOperationFinishedHandler errHandler = new DriverOperationFinishedHandler (null, session);
        driver.handleUnsupportedOperationError (amqpMessage.toString (), errHandler);
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.