public class io.vertx.rabbitmq.impl.RabbitMQMessageImpl implements io.vertx.rabbitmq.RabbitMQMessage
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: io.vertx.rabbitmq.impl.RabbitMQMessageImpl
  super_class: java.lang.Object
{
  private io.vertx.core.buffer.Buffer body;
    descriptor: Lio/vertx/core/buffer/Buffer;
    flags: (0x0002) ACC_PRIVATE

  private java.lang.String consumerTag;
    descriptor: Ljava/lang/String;
    flags: (0x0002) ACC_PRIVATE

  private com.rabbitmq.client.Envelope envelope;
    descriptor: Lcom/rabbitmq/client/Envelope;
    flags: (0x0002) ACC_PRIVATE

  private com.rabbitmq.client.BasicProperties properties;
    descriptor: Lcom/rabbitmq/client/BasicProperties;
    flags: (0x0002) ACC_PRIVATE

  private java.lang.Integer messageCount;
    descriptor: Ljava/lang/Integer;
    flags: (0x0002) ACC_PRIVATE

  void <init>(byte[], java.lang.String, com.rabbitmq.client.Envelope, com.rabbitmq.client.AMQP$BasicProperties, java.lang.Integer);
    descriptor: ([BLjava/lang/String;Lcom/rabbitmq/client/Envelope;Lcom/rabbitmq/client/AMQP$BasicProperties;Ljava/lang/Integer;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=6, args_size=6
        start local 0 // io.vertx.rabbitmq.impl.RabbitMQMessageImpl this
        start local 1 // byte[] body
        start local 2 // java.lang.String consumerTag
        start local 3 // com.rabbitmq.client.Envelope envelope
        start local 4 // com.rabbitmq.client.AMQP$BasicProperties properties
        start local 5 // java.lang.Integer messageCount
         0: .line 25
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 26
            aload 0 /* this */
            aload 1 /* body */
            invokestatic io.vertx.core.buffer.Buffer.buffer:([B)Lio/vertx/core/buffer/Buffer;
            putfield io.vertx.rabbitmq.impl.RabbitMQMessageImpl.body:Lio/vertx/core/buffer/Buffer;
         2: .line 27
            aload 0 /* this */
            aload 2 /* consumerTag */
            putfield io.vertx.rabbitmq.impl.RabbitMQMessageImpl.consumerTag:Ljava/lang/String;
         3: .line 28
            aload 0 /* this */
            aload 3 /* envelope */
            putfield io.vertx.rabbitmq.impl.RabbitMQMessageImpl.envelope:Lcom/rabbitmq/client/Envelope;
         4: .line 29
            aload 0 /* this */
            aload 4 /* properties */
            putfield io.vertx.rabbitmq.impl.RabbitMQMessageImpl.properties:Lcom/rabbitmq/client/BasicProperties;
         5: .line 30
            aload 0 /* this */
            aload 5 /* messageCount */
            putfield io.vertx.rabbitmq.impl.RabbitMQMessageImpl.messageCount:Ljava/lang/Integer;
         6: .line 31
            return
        end local 5 // java.lang.Integer messageCount
        end local 4 // com.rabbitmq.client.AMQP$BasicProperties properties
        end local 3 // com.rabbitmq.client.Envelope envelope
        end local 2 // java.lang.String consumerTag
        end local 1 // byte[] body
        end local 0 // io.vertx.rabbitmq.impl.RabbitMQMessageImpl this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    7     0          this  Lio/vertx/rabbitmq/impl/RabbitMQMessageImpl;
            0    7     1          body  [B
            0    7     2   consumerTag  Ljava/lang/String;
            0    7     3      envelope  Lcom/rabbitmq/client/Envelope;
            0    7     4    properties  Lcom/rabbitmq/client/AMQP$BasicProperties;
            0    7     5  messageCount  Ljava/lang/Integer;
    MethodParameters:
              Name  Flags
      body          
      consumerTag   
      envelope      
      properties    
      messageCount  

  public io.vertx.core.buffer.Buffer body();
    descriptor: ()Lio/vertx/core/buffer/Buffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.rabbitmq.impl.RabbitMQMessageImpl this
         0: .line 35
            aload 0 /* this */
            getfield io.vertx.rabbitmq.impl.RabbitMQMessageImpl.body:Lio/vertx/core/buffer/Buffer;
            areturn
        end local 0 // io.vertx.rabbitmq.impl.RabbitMQMessageImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/rabbitmq/impl/RabbitMQMessageImpl;

  public java.lang.String consumerTag();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.rabbitmq.impl.RabbitMQMessageImpl this
         0: .line 40
            aload 0 /* this */
            getfield io.vertx.rabbitmq.impl.RabbitMQMessageImpl.consumerTag:Ljava/lang/String;
            areturn
        end local 0 // io.vertx.rabbitmq.impl.RabbitMQMessageImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/rabbitmq/impl/RabbitMQMessageImpl;

  public com.rabbitmq.client.Envelope envelope();
    descriptor: ()Lcom/rabbitmq/client/Envelope;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.rabbitmq.impl.RabbitMQMessageImpl this
         0: .line 45
            aload 0 /* this */
            getfield io.vertx.rabbitmq.impl.RabbitMQMessageImpl.envelope:Lcom/rabbitmq/client/Envelope;
            areturn
        end local 0 // io.vertx.rabbitmq.impl.RabbitMQMessageImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/rabbitmq/impl/RabbitMQMessageImpl;

  public com.rabbitmq.client.BasicProperties properties();
    descriptor: ()Lcom/rabbitmq/client/BasicProperties;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.rabbitmq.impl.RabbitMQMessageImpl this
         0: .line 50
            aload 0 /* this */
            getfield io.vertx.rabbitmq.impl.RabbitMQMessageImpl.properties:Lcom/rabbitmq/client/BasicProperties;
            areturn
        end local 0 // io.vertx.rabbitmq.impl.RabbitMQMessageImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/rabbitmq/impl/RabbitMQMessageImpl;

  public java.lang.Integer messageCount();
    descriptor: ()Ljava/lang/Integer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.rabbitmq.impl.RabbitMQMessageImpl this
         0: .line 55
            aload 0 /* this */
            getfield io.vertx.rabbitmq.impl.RabbitMQMessageImpl.messageCount:Ljava/lang/Integer;
            areturn
        end local 0 // io.vertx.rabbitmq.impl.RabbitMQMessageImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/rabbitmq/impl/RabbitMQMessageImpl;
}
SourceFile: "RabbitMQMessageImpl.java"
InnerClasses:
  public BasicProperties = com.rabbitmq.client.AMQP$BasicProperties of com.rabbitmq.client.AMQP