public class io.vertx.core.eventbus.impl.MessageImpl<U, V> implements io.vertx.core.eventbus.Message<V>
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: io.vertx.core.eventbus.impl.MessageImpl
  super_class: java.lang.Object
{
  private static final io.vertx.core.impl.logging.Logger log;
    descriptor: Lio/vertx/core/impl/logging/Logger;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  protected io.vertx.core.eventbus.MessageCodec<U, V> messageCodec;
    descriptor: Lio/vertx/core/eventbus/MessageCodec;
    flags: (0x0004) ACC_PROTECTED
    Signature: Lio/vertx/core/eventbus/MessageCodec<TU;TV;>;

  protected final io.vertx.core.eventbus.impl.EventBusImpl bus;
    descriptor: Lio/vertx/core/eventbus/impl/EventBusImpl;
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL

  protected java.lang.String address;
    descriptor: Ljava/lang/String;
    flags: (0x0004) ACC_PROTECTED

  protected java.lang.String replyAddress;
    descriptor: Ljava/lang/String;
    flags: (0x0004) ACC_PROTECTED

  protected io.vertx.core.MultiMap headers;
    descriptor: Lio/vertx/core/MultiMap;
    flags: (0x0004) ACC_PROTECTED

  protected U sentBody;
    descriptor: Ljava/lang/Object;
    flags: (0x0004) ACC_PROTECTED
    Signature: TU;

  protected V receivedBody;
    descriptor: Ljava/lang/Object;
    flags: (0x0004) ACC_PROTECTED
    Signature: TV;

  protected boolean send;
    descriptor: Z
    flags: (0x0004) ACC_PROTECTED

  protected java.lang.Object trace;
    descriptor: Ljava/lang/Object;
    flags: (0x0004) ACC_PROTECTED

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 28
            ldc Lio/vertx/core/eventbus/impl/MessageImpl;
            invokestatic io.vertx.core.impl.logging.LoggerFactory.getLogger:(Ljava/lang/Class;)Lio/vertx/core/impl/logging/Logger;
            putstatic io.vertx.core.eventbus.impl.MessageImpl.log:Lio/vertx/core/impl/logging/Logger;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>(io.vertx.core.eventbus.impl.EventBusImpl);
    descriptor: (Lio/vertx/core/eventbus/impl/EventBusImpl;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.eventbus.impl.MessageImpl this
        start local 1 // io.vertx.core.eventbus.impl.EventBusImpl bus
         0: .line 40
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 41
            aload 0 /* this */
            aload 1 /* bus */
            putfield io.vertx.core.eventbus.impl.MessageImpl.bus:Lio/vertx/core/eventbus/impl/EventBusImpl;
         2: .line 42
            return
        end local 1 // io.vertx.core.eventbus.impl.EventBusImpl bus
        end local 0 // io.vertx.core.eventbus.impl.MessageImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/vertx/core/eventbus/impl/MessageImpl<TU;TV;>;
            0    3     1   bus  Lio/vertx/core/eventbus/impl/EventBusImpl;
    MethodParameters:
      Name  Flags
      bus   

  public void <init>(java.lang.String, io.vertx.core.MultiMap, U, io.vertx.core.eventbus.MessageCodec<U, V>, boolean, io.vertx.core.eventbus.impl.EventBusImpl);
    descriptor: (Ljava/lang/String;Lio/vertx/core/MultiMap;Ljava/lang/Object;Lio/vertx/core/eventbus/MessageCodec;ZLio/vertx/core/eventbus/impl/EventBusImpl;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=7, args_size=7
        start local 0 // io.vertx.core.eventbus.impl.MessageImpl this
        start local 1 // java.lang.String address
        start local 2 // io.vertx.core.MultiMap headers
        start local 3 // java.lang.Object sentBody
        start local 4 // io.vertx.core.eventbus.MessageCodec messageCodec
        start local 5 // boolean send
        start local 6 // io.vertx.core.eventbus.impl.EventBusImpl bus
         0: .line 44
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 47
            aload 0 /* this */
            aload 4 /* messageCodec */
            putfield io.vertx.core.eventbus.impl.MessageImpl.messageCodec:Lio/vertx/core/eventbus/MessageCodec;
         2: .line 48
            aload 0 /* this */
            aload 1 /* address */
            putfield io.vertx.core.eventbus.impl.MessageImpl.address:Ljava/lang/String;
         3: .line 49
            aload 0 /* this */
            aload 2 /* headers */
            putfield io.vertx.core.eventbus.impl.MessageImpl.headers:Lio/vertx/core/MultiMap;
         4: .line 50
            aload 0 /* this */
            aload 3 /* sentBody */
            putfield io.vertx.core.eventbus.impl.MessageImpl.sentBody:Ljava/lang/Object;
         5: .line 51
            aload 0 /* this */
            iload 5 /* send */
            putfield io.vertx.core.eventbus.impl.MessageImpl.send:Z
         6: .line 52
            aload 0 /* this */
            aload 6 /* bus */
            putfield io.vertx.core.eventbus.impl.MessageImpl.bus:Lio/vertx/core/eventbus/impl/EventBusImpl;
         7: .line 53
            return
        end local 6 // io.vertx.core.eventbus.impl.EventBusImpl bus
        end local 5 // boolean send
        end local 4 // io.vertx.core.eventbus.MessageCodec messageCodec
        end local 3 // java.lang.Object sentBody
        end local 2 // io.vertx.core.MultiMap headers
        end local 1 // java.lang.String address
        end local 0 // io.vertx.core.eventbus.impl.MessageImpl this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    8     0          this  Lio/vertx/core/eventbus/impl/MessageImpl<TU;TV;>;
            0    8     1       address  Ljava/lang/String;
            0    8     2       headers  Lio/vertx/core/MultiMap;
            0    8     3      sentBody  TU;
            0    8     4  messageCodec  Lio/vertx/core/eventbus/MessageCodec<TU;TV;>;
            0    8     5          send  Z
            0    8     6           bus  Lio/vertx/core/eventbus/impl/EventBusImpl;
    Signature: (Ljava/lang/String;Lio/vertx/core/MultiMap;TU;Lio/vertx/core/eventbus/MessageCodec<TU;TV;>;ZLio/vertx/core/eventbus/impl/EventBusImpl;)V
    MethodParameters:
              Name  Flags
      address       
      headers       
      sentBody      
      messageCodec  
      send          
      bus           

  protected void <init>(io.vertx.core.eventbus.impl.MessageImpl<U, V>);
    descriptor: (Lio/vertx/core/eventbus/impl/MessageImpl;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=5, args_size=2
        start local 0 // io.vertx.core.eventbus.impl.MessageImpl this
        start local 1 // io.vertx.core.eventbus.impl.MessageImpl other
         0: .line 55
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 56
            aload 0 /* this */
            aload 1 /* other */
            getfield io.vertx.core.eventbus.impl.MessageImpl.bus:Lio/vertx/core/eventbus/impl/EventBusImpl;
            putfield io.vertx.core.eventbus.impl.MessageImpl.bus:Lio/vertx/core/eventbus/impl/EventBusImpl;
         2: .line 57
            aload 0 /* this */
            aload 1 /* other */
            getfield io.vertx.core.eventbus.impl.MessageImpl.address:Ljava/lang/String;
            putfield io.vertx.core.eventbus.impl.MessageImpl.address:Ljava/lang/String;
         3: .line 58
            aload 0 /* this */
            aload 1 /* other */
            getfield io.vertx.core.eventbus.impl.MessageImpl.replyAddress:Ljava/lang/String;
            putfield io.vertx.core.eventbus.impl.MessageImpl.replyAddress:Ljava/lang/String;
         4: .line 59
            aload 0 /* this */
            aload 1 /* other */
            getfield io.vertx.core.eventbus.impl.MessageImpl.messageCodec:Lio/vertx/core/eventbus/MessageCodec;
            putfield io.vertx.core.eventbus.impl.MessageImpl.messageCodec:Lio/vertx/core/eventbus/MessageCodec;
         5: .line 60
            aload 1 /* other */
            getfield io.vertx.core.eventbus.impl.MessageImpl.headers:Lio/vertx/core/MultiMap;
            ifnull 12
         6: .line 61
            aload 1 /* other */
            getfield io.vertx.core.eventbus.impl.MessageImpl.headers:Lio/vertx/core/MultiMap;
            invokeinterface io.vertx.core.MultiMap.entries:()Ljava/util/List;
            astore 2 /* entries */
        start local 2 // java.util.List entries
         7: .line 62
            aload 0 /* this */
            invokestatic io.vertx.core.MultiMap.caseInsensitiveMultiMap:()Lio/vertx/core/MultiMap;
            putfield io.vertx.core.eventbus.impl.MessageImpl.headers:Lio/vertx/core/MultiMap;
         8: .line 63
            aload 2 /* entries */
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 4
            goto 11
      StackMap locals: io.vertx.core.eventbus.impl.MessageImpl io.vertx.core.eventbus.impl.MessageImpl java.util.List top java.util.Iterator
      StackMap stack:
         9: aload 4
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.util.Map$Entry
            astore 3 /* entry */
        start local 3 // java.util.Map$Entry entry
        10: .line 64
            aload 0 /* this */
            getfield io.vertx.core.eventbus.impl.MessageImpl.headers:Lio/vertx/core/MultiMap;
            aload 3 /* entry */
            invokeinterface java.util.Map$Entry.getKey:()Ljava/lang/Object;
            checkcast java.lang.String
            aload 3 /* entry */
            invokeinterface java.util.Map$Entry.getValue:()Ljava/lang/Object;
            checkcast java.lang.String
            invokeinterface io.vertx.core.MultiMap.add:(Ljava/lang/String;Ljava/lang/String;)Lio/vertx/core/MultiMap;
            pop
        end local 3 // java.util.Map$Entry entry
        11: .line 63
      StackMap locals:
      StackMap stack:
            aload 4
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 9
        end local 2 // java.util.List entries
        12: .line 67
      StackMap locals: io.vertx.core.eventbus.impl.MessageImpl io.vertx.core.eventbus.impl.MessageImpl
      StackMap stack:
            aload 1 /* other */
            getfield io.vertx.core.eventbus.impl.MessageImpl.sentBody:Ljava/lang/Object;
            ifnull 15
        13: .line 68
            aload 0 /* this */
            aload 1 /* other */
            getfield io.vertx.core.eventbus.impl.MessageImpl.sentBody:Ljava/lang/Object;
            putfield io.vertx.core.eventbus.impl.MessageImpl.sentBody:Ljava/lang/Object;
        14: .line 69
            aload 0 /* this */
            aload 0 /* this */
            getfield io.vertx.core.eventbus.impl.MessageImpl.messageCodec:Lio/vertx/core/eventbus/MessageCodec;
            aload 1 /* other */
            getfield io.vertx.core.eventbus.impl.MessageImpl.sentBody:Ljava/lang/Object;
            invokeinterface io.vertx.core.eventbus.MessageCodec.transform:(Ljava/lang/Object;)Ljava/lang/Object;
            putfield io.vertx.core.eventbus.impl.MessageImpl.receivedBody:Ljava/lang/Object;
        15: .line 71
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* other */
            getfield io.vertx.core.eventbus.impl.MessageImpl.send:Z
            putfield io.vertx.core.eventbus.impl.MessageImpl.send:Z
        16: .line 72
            return
        end local 1 // io.vertx.core.eventbus.impl.MessageImpl other
        end local 0 // io.vertx.core.eventbus.impl.MessageImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   17     0     this  Lio/vertx/core/eventbus/impl/MessageImpl<TU;TV;>;
            0   17     1    other  Lio/vertx/core/eventbus/impl/MessageImpl<TU;TV;>;
            7   12     2  entries  Ljava/util/List<Ljava/util/Map$Entry<Ljava/lang/String;Ljava/lang/String;>;>;
           10   11     3    entry  Ljava/util/Map$Entry<Ljava/lang/String;Ljava/lang/String;>;
    Signature: (Lio/vertx/core/eventbus/impl/MessageImpl<TU;TV;>;)V
    MethodParameters:
       Name  Flags
      other  

  public io.vertx.core.eventbus.impl.MessageImpl<U, V> copyBeforeReceive();
    descriptor: ()Lio/vertx/core/eventbus/impl/MessageImpl;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // io.vertx.core.eventbus.impl.MessageImpl this
         0: .line 75
            new io.vertx.core.eventbus.impl.MessageImpl
            dup
            aload 0 /* this */
            invokespecial io.vertx.core.eventbus.impl.MessageImpl.<init>:(Lio/vertx/core/eventbus/impl/MessageImpl;)V
            areturn
        end local 0 // io.vertx.core.eventbus.impl.MessageImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/eventbus/impl/MessageImpl<TU;TV;>;
    Signature: ()Lio/vertx/core/eventbus/impl/MessageImpl<TU;TV;>;

  public java.lang.String address();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.eventbus.impl.MessageImpl this
         0: .line 80
            aload 0 /* this */
            getfield io.vertx.core.eventbus.impl.MessageImpl.address:Ljava/lang/String;
            areturn
        end local 0 // io.vertx.core.eventbus.impl.MessageImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/eventbus/impl/MessageImpl<TU;TV;>;

  public io.vertx.core.MultiMap headers();
    descriptor: ()Lio/vertx/core/MultiMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.vertx.core.eventbus.impl.MessageImpl this
         0: .line 86
            aload 0 /* this */
            getfield io.vertx.core.eventbus.impl.MessageImpl.headers:Lio/vertx/core/MultiMap;
            ifnonnull 2
         1: .line 87
            aload 0 /* this */
            invokestatic io.vertx.core.MultiMap.caseInsensitiveMultiMap:()Lio/vertx/core/MultiMap;
            putfield io.vertx.core.eventbus.impl.MessageImpl.headers:Lio/vertx/core/MultiMap;
         2: .line 89
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.core.eventbus.impl.MessageImpl.headers:Lio/vertx/core/MultiMap;
            areturn
        end local 0 // io.vertx.core.eventbus.impl.MessageImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/vertx/core/eventbus/impl/MessageImpl<TU;TV;>;

  public V body();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // io.vertx.core.eventbus.impl.MessageImpl this
         0: .line 94
            aload 0 /* this */
            getfield io.vertx.core.eventbus.impl.MessageImpl.receivedBody:Ljava/lang/Object;
            ifnonnull 2
            aload 0 /* this */
            getfield io.vertx.core.eventbus.impl.MessageImpl.sentBody:Ljava/lang/Object;
            ifnull 2
         1: .line 95
            aload 0 /* this */
            aload 0 /* this */
            getfield io.vertx.core.eventbus.impl.MessageImpl.messageCodec:Lio/vertx/core/eventbus/MessageCodec;
            aload 0 /* this */
            getfield io.vertx.core.eventbus.impl.MessageImpl.sentBody:Ljava/lang/Object;
            invokeinterface io.vertx.core.eventbus.MessageCodec.transform:(Ljava/lang/Object;)Ljava/lang/Object;
            putfield io.vertx.core.eventbus.impl.MessageImpl.receivedBody:Ljava/lang/Object;
         2: .line 97
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.core.eventbus.impl.MessageImpl.receivedBody:Ljava/lang/Object;
            areturn
        end local 0 // io.vertx.core.eventbus.impl.MessageImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/vertx/core/eventbus/impl/MessageImpl<TU;TV;>;
    Signature: ()TV;

  public java.lang.String replyAddress();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.eventbus.impl.MessageImpl this
         0: .line 102
            aload 0 /* this */
            getfield io.vertx.core.eventbus.impl.MessageImpl.replyAddress:Ljava/lang/String;
            areturn
        end local 0 // io.vertx.core.eventbus.impl.MessageImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/eventbus/impl/MessageImpl<TU;TV;>;

  public void reply(java.lang.Object, io.vertx.core.eventbus.DeliveryOptions);
    descriptor: (Ljava/lang/Object;Lio/vertx/core/eventbus/DeliveryOptions;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // io.vertx.core.eventbus.impl.MessageImpl this
        start local 1 // java.lang.Object message
        start local 2 // io.vertx.core.eventbus.DeliveryOptions options
         0: .line 107
            aload 0 /* this */
            getfield io.vertx.core.eventbus.impl.MessageImpl.replyAddress:Ljava/lang/String;
            ifnull 3
         1: .line 108
            aload 0 /* this */
            aload 1 /* message */
            aload 2 /* options */
            invokevirtual io.vertx.core.eventbus.impl.MessageImpl.createReply:(Ljava/lang/Object;Lio/vertx/core/eventbus/DeliveryOptions;)Lio/vertx/core/eventbus/impl/MessageImpl;
            astore 3 /* reply */
        start local 3 // io.vertx.core.eventbus.impl.MessageImpl reply
         2: .line 109
            aload 0 /* this */
            getfield io.vertx.core.eventbus.impl.MessageImpl.bus:Lio/vertx/core/eventbus/impl/EventBusImpl;
            aload 3 /* reply */
            aload 2 /* options */
            aconst_null
            invokevirtual io.vertx.core.eventbus.impl.EventBusImpl.sendReply:(Lio/vertx/core/eventbus/impl/MessageImpl;Lio/vertx/core/eventbus/DeliveryOptions;Lio/vertx/core/eventbus/impl/ReplyHandler;)V
        end local 3 // io.vertx.core.eventbus.impl.MessageImpl reply
         3: .line 111
      StackMap locals:
      StackMap stack:
            return
        end local 2 // io.vertx.core.eventbus.DeliveryOptions options
        end local 1 // java.lang.Object message
        end local 0 // io.vertx.core.eventbus.impl.MessageImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    4     0     this  Lio/vertx/core/eventbus/impl/MessageImpl<TU;TV;>;
            0    4     1  message  Ljava/lang/Object;
            0    4     2  options  Lio/vertx/core/eventbus/DeliveryOptions;
            2    3     3    reply  Lio/vertx/core/eventbus/impl/MessageImpl;
    MethodParameters:
         Name  Flags
      message  
      options  

  public <R> io.vertx.core.Future<io.vertx.core.eventbus.Message<R>> replyAndRequest(, io.vertx.core.eventbus.DeliveryOptions);
    descriptor: (Ljava/lang/Object;Lio/vertx/core/eventbus/DeliveryOptions;)Lio/vertx/core/Future;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=3
        start local 0 // io.vertx.core.eventbus.impl.MessageImpl this
        start local 1 // java.lang.Object message
        start local 2 // io.vertx.core.eventbus.DeliveryOptions options
         0: .line 115
            aload 0 /* this */
            getfield io.vertx.core.eventbus.impl.MessageImpl.replyAddress:Ljava/lang/String;
            ifnull 5
         1: .line 116
            aload 0 /* this */
            aload 1 /* message */
            aload 2 /* options */
            invokevirtual io.vertx.core.eventbus.impl.MessageImpl.createReply:(Ljava/lang/Object;Lio/vertx/core/eventbus/DeliveryOptions;)Lio/vertx/core/eventbus/impl/MessageImpl;
            astore 3 /* reply */
        start local 3 // io.vertx.core.eventbus.impl.MessageImpl reply
         2: .line 117
            aload 0 /* this */
            getfield io.vertx.core.eventbus.impl.MessageImpl.bus:Lio/vertx/core/eventbus/impl/EventBusImpl;
            aload 3 /* reply */
            iconst_0
            aload 2 /* options */
            invokevirtual io.vertx.core.eventbus.impl.EventBusImpl.createReplyHandler:(Lio/vertx/core/eventbus/impl/MessageImpl;ZLio/vertx/core/eventbus/DeliveryOptions;)Lio/vertx/core/eventbus/impl/ReplyHandler;
            astore 4 /* handler */
        start local 4 // io.vertx.core.eventbus.impl.ReplyHandler handler
         3: .line 118
            aload 0 /* this */
            getfield io.vertx.core.eventbus.impl.MessageImpl.bus:Lio/vertx/core/eventbus/impl/EventBusImpl;
            aload 3 /* reply */
            aload 2 /* options */
            aload 4 /* handler */
            invokevirtual io.vertx.core.eventbus.impl.EventBusImpl.sendReply:(Lio/vertx/core/eventbus/impl/MessageImpl;Lio/vertx/core/eventbus/DeliveryOptions;Lio/vertx/core/eventbus/impl/ReplyHandler;)V
         4: .line 119
            aload 4 /* handler */
            invokevirtual io.vertx.core.eventbus.impl.ReplyHandler.result:()Lio/vertx/core/Future;
            areturn
        end local 4 // io.vertx.core.eventbus.impl.ReplyHandler handler
        end local 3 // io.vertx.core.eventbus.impl.MessageImpl reply
         5: .line 121
      StackMap locals:
      StackMap stack:
            new java.lang.IllegalStateException
            dup
            invokespecial java.lang.IllegalStateException.<init>:()V
            athrow
        end local 2 // io.vertx.core.eventbus.DeliveryOptions options
        end local 1 // java.lang.Object message
        end local 0 // io.vertx.core.eventbus.impl.MessageImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    6     0     this  Lio/vertx/core/eventbus/impl/MessageImpl<TU;TV;>;
            0    6     1  message  Ljava/lang/Object;
            0    6     2  options  Lio/vertx/core/eventbus/DeliveryOptions;
            2    5     3    reply  Lio/vertx/core/eventbus/impl/MessageImpl;
            3    5     4  handler  Lio/vertx/core/eventbus/impl/ReplyHandler<TR;>;
    Signature: <R:Ljava/lang/Object;>(Ljava/lang/Object;Lio/vertx/core/eventbus/DeliveryOptions;)Lio/vertx/core/Future<Lio/vertx/core/eventbus/Message<TR;>;>;
    MethodParameters:
         Name  Flags
      message  
      options  

  protected io.vertx.core.eventbus.impl.MessageImpl createReply(java.lang.Object, io.vertx.core.eventbus.DeliveryOptions);
    descriptor: (Ljava/lang/Object;Lio/vertx/core/eventbus/DeliveryOptions;)Lio/vertx/core/eventbus/impl/MessageImpl;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=6, locals=4, args_size=3
        start local 0 // io.vertx.core.eventbus.impl.MessageImpl this
        start local 1 // java.lang.Object message
        start local 2 // io.vertx.core.eventbus.DeliveryOptions options
         0: .line 126
            aload 0 /* this */
            getfield io.vertx.core.eventbus.impl.MessageImpl.bus:Lio/vertx/core/eventbus/impl/EventBusImpl;
            iconst_1
            aload 0 /* this */
            getfield io.vertx.core.eventbus.impl.MessageImpl.replyAddress:Ljava/lang/String;
            aload 2 /* options */
            invokevirtual io.vertx.core.eventbus.DeliveryOptions.getHeaders:()Lio/vertx/core/MultiMap;
            aload 1 /* message */
            aload 2 /* options */
            invokevirtual io.vertx.core.eventbus.DeliveryOptions.getCodecName:()Ljava/lang/String;
            invokevirtual io.vertx.core.eventbus.impl.EventBusImpl.createMessage:(ZLjava/lang/String;Lio/vertx/core/MultiMap;Ljava/lang/Object;Ljava/lang/String;)Lio/vertx/core/eventbus/impl/MessageImpl;
            astore 3 /* reply */
        start local 3 // io.vertx.core.eventbus.impl.MessageImpl reply
         1: .line 127
            aload 3 /* reply */
            aload 0 /* this */
            getfield io.vertx.core.eventbus.impl.MessageImpl.trace:Ljava/lang/Object;
            putfield io.vertx.core.eventbus.impl.MessageImpl.trace:Ljava/lang/Object;
         2: .line 128
            aload 3 /* reply */
            areturn
        end local 3 // io.vertx.core.eventbus.impl.MessageImpl reply
        end local 2 // io.vertx.core.eventbus.DeliveryOptions options
        end local 1 // java.lang.Object message
        end local 0 // io.vertx.core.eventbus.impl.MessageImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0     this  Lio/vertx/core/eventbus/impl/MessageImpl<TU;TV;>;
            0    3     1  message  Ljava/lang/Object;
            0    3     2  options  Lio/vertx/core/eventbus/DeliveryOptions;
            1    3     3    reply  Lio/vertx/core/eventbus/impl/MessageImpl;
    MethodParameters:
         Name  Flags
      message  
      options  

  public boolean isSend();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.eventbus.impl.MessageImpl this
         0: .line 133
            aload 0 /* this */
            getfield io.vertx.core.eventbus.impl.MessageImpl.send:Z
            ireturn
        end local 0 // io.vertx.core.eventbus.impl.MessageImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/eventbus/impl/MessageImpl<TU;TV;>;

  public void setReplyAddress(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.eventbus.impl.MessageImpl this
        start local 1 // java.lang.String replyAddress
         0: .line 137
            aload 0 /* this */
            aload 1 /* replyAddress */
            putfield io.vertx.core.eventbus.impl.MessageImpl.replyAddress:Ljava/lang/String;
         1: .line 138
            return
        end local 1 // java.lang.String replyAddress
        end local 0 // io.vertx.core.eventbus.impl.MessageImpl this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    2     0          this  Lio/vertx/core/eventbus/impl/MessageImpl<TU;TV;>;
            0    2     1  replyAddress  Ljava/lang/String;
    MethodParameters:
              Name  Flags
      replyAddress  

  public io.vertx.core.eventbus.MessageCodec<U, V> codec();
    descriptor: ()Lio/vertx/core/eventbus/MessageCodec;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.eventbus.impl.MessageImpl this
         0: .line 141
            aload 0 /* this */
            getfield io.vertx.core.eventbus.impl.MessageImpl.messageCodec:Lio/vertx/core/eventbus/MessageCodec;
            areturn
        end local 0 // io.vertx.core.eventbus.impl.MessageImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/eventbus/impl/MessageImpl<TU;TV;>;
    Signature: ()Lio/vertx/core/eventbus/MessageCodec<TU;TV;>;

  protected boolean isLocal();
    descriptor: ()Z
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.eventbus.impl.MessageImpl this
         0: .line 145
            iconst_1
            ireturn
        end local 0 // io.vertx.core.eventbus.impl.MessageImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/eventbus/impl/MessageImpl<TU;TV;>;
}
Signature: <U:Ljava/lang/Object;V:Ljava/lang/Object;>Ljava/lang/Object;Lio/vertx/core/eventbus/Message<TV;>;
SourceFile: "MessageImpl.java"
InnerClasses:
  public abstract Entry = java.util.Map$Entry of java.util.Map