Interface TransactionalOperations

  • All Known Implementing Classes:
    MockNode, Transaction

    public interface TransactionalOperations
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      void basicAck​(long deliveryTag, boolean multiple)  
      void basicNack​(long deliveryTag, boolean multiple, boolean requeue)  
      boolean basicPublish​(String exchange, String routingKey, boolean mandatory, boolean immediate, com.rabbitmq.client.AMQP.BasicProperties props, byte[] body)  
      void basicReject​(long deliveryTag, boolean requeue)  
    • Method Detail

      • basicPublish

        boolean basicPublish​(String exchange,
                             String routingKey,
                             boolean mandatory,
                             boolean immediate,
                             com.rabbitmq.client.AMQP.BasicProperties props,
                             byte[] body)
      • basicReject

        void basicReject​(long deliveryTag,
                         boolean requeue)
      • basicNack

        void basicNack​(long deliveryTag,
                       boolean multiple,
                       boolean requeue)
      • basicAck

        void basicAck​(long deliveryTag,
                      boolean multiple)