Interface MetricsCollectorWrapper

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      void basicAck​(com.rabbitmq.client.Channel channel, long deliveryTag, boolean multiple)  
      void basicCancel​(com.rabbitmq.client.Channel channel, String consumerTag)  
      void basicConsume​(com.rabbitmq.client.Channel channel, String consumerTag, boolean autoAck)  
      void basicNack​(com.rabbitmq.client.Channel channel, long deliveryTag)  
      void basicPublish​(com.rabbitmq.client.Channel channel)  
      void basicReject​(com.rabbitmq.client.Channel channel, long deliveryTag)  
      void closeChannel​(com.rabbitmq.client.Channel channel)  
      void closeConnection​(com.rabbitmq.client.Connection connection)  
      void consumedMessage​(com.rabbitmq.client.Channel channel, long deliveryTag, boolean autoAck)  
      void consumedMessage​(com.rabbitmq.client.Channel channel, long deliveryTag, String consumerTag)  
      void newChannel​(com.rabbitmq.client.Channel channel)  
      void newConnection​(com.rabbitmq.client.Connection connection)  
    • Method Detail

      • newConnection

        void newConnection​(com.rabbitmq.client.Connection connection)
      • closeConnection

        void closeConnection​(com.rabbitmq.client.Connection connection)
      • newChannel

        void newChannel​(com.rabbitmq.client.Channel channel)
      • closeChannel

        void closeChannel​(com.rabbitmq.client.Channel channel)
      • basicPublish

        void basicPublish​(com.rabbitmq.client.Channel channel)
      • consumedMessage

        void consumedMessage​(com.rabbitmq.client.Channel channel,
                             long deliveryTag,
                             boolean autoAck)
      • consumedMessage

        void consumedMessage​(com.rabbitmq.client.Channel channel,
                             long deliveryTag,
                             String consumerTag)
      • basicAck

        void basicAck​(com.rabbitmq.client.Channel channel,
                      long deliveryTag,
                      boolean multiple)
      • basicNack

        void basicNack​(com.rabbitmq.client.Channel channel,
                       long deliveryTag)
      • basicReject

        void basicReject​(com.rabbitmq.client.Channel channel,
                         long deliveryTag)
      • basicConsume

        void basicConsume​(com.rabbitmq.client.Channel channel,
                          String consumerTag,
                          boolean autoAck)
      • basicCancel

        void basicCancel​(com.rabbitmq.client.Channel channel,
                         String consumerTag)