public class io.vertx.core.eventbus.DeliveryOptions
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: io.vertx.core.eventbus.DeliveryOptions
  super_class: java.lang.Object
{
  public static final long DEFAULT_TIMEOUT;
    descriptor: J
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 30000

  public static final boolean DEFAULT_LOCAL_ONLY;
    descriptor: Z
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 0

  private long timeout;
    descriptor: J
    flags: (0x0002) ACC_PRIVATE

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

  private io.vertx.core.MultiMap headers;
    descriptor: Lio/vertx/core/MultiMap;
    flags: (0x0002) ACC_PRIVATE

  private boolean localOnly;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // io.vertx.core.eventbus.DeliveryOptions this
         0: .line 53
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 45
            aload 0 /* this */
            ldc 30000
            putfield io.vertx.core.eventbus.DeliveryOptions.timeout:J
         2: .line 48
            aload 0 /* this */
            iconst_0
            putfield io.vertx.core.eventbus.DeliveryOptions.localOnly:Z
         3: .line 54
            return
        end local 0 // io.vertx.core.eventbus.DeliveryOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lio/vertx/core/eventbus/DeliveryOptions;

  public void <init>(io.vertx.core.eventbus.DeliveryOptions);
    descriptor: (Lio/vertx/core/eventbus/DeliveryOptions;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.vertx.core.eventbus.DeliveryOptions this
        start local 1 // io.vertx.core.eventbus.DeliveryOptions other
         0: .line 61
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 45
            aload 0 /* this */
            ldc 30000
            putfield io.vertx.core.eventbus.DeliveryOptions.timeout:J
         2: .line 48
            aload 0 /* this */
            iconst_0
            putfield io.vertx.core.eventbus.DeliveryOptions.localOnly:Z
         3: .line 62
            aload 0 /* this */
            aload 1 /* other */
            invokevirtual io.vertx.core.eventbus.DeliveryOptions.getSendTimeout:()J
            putfield io.vertx.core.eventbus.DeliveryOptions.timeout:J
         4: .line 63
            aload 0 /* this */
            aload 1 /* other */
            invokevirtual io.vertx.core.eventbus.DeliveryOptions.getCodecName:()Ljava/lang/String;
            putfield io.vertx.core.eventbus.DeliveryOptions.codecName:Ljava/lang/String;
         5: .line 64
            aload 0 /* this */
            aload 1 /* other */
            invokevirtual io.vertx.core.eventbus.DeliveryOptions.getHeaders:()Lio/vertx/core/MultiMap;
            putfield io.vertx.core.eventbus.DeliveryOptions.headers:Lio/vertx/core/MultiMap;
         6: .line 65
            aload 0 /* this */
            aload 1 /* other */
            getfield io.vertx.core.eventbus.DeliveryOptions.localOnly:Z
            putfield io.vertx.core.eventbus.DeliveryOptions.localOnly:Z
         7: .line 66
            return
        end local 1 // io.vertx.core.eventbus.DeliveryOptions other
        end local 0 // io.vertx.core.eventbus.DeliveryOptions this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    8     0   this  Lio/vertx/core/eventbus/DeliveryOptions;
            0    8     1  other  Lio/vertx/core/eventbus/DeliveryOptions;
    MethodParameters:
       Name  Flags
      other  

  public void <init>(io.vertx.core.json.JsonObject);
    descriptor: (Lio/vertx/core/json/JsonObject;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=2
        start local 0 // io.vertx.core.eventbus.DeliveryOptions this
        start local 1 // io.vertx.core.json.JsonObject json
         0: .line 73
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 45
            aload 0 /* this */
            ldc 30000
            putfield io.vertx.core.eventbus.DeliveryOptions.timeout:J
         2: .line 48
            aload 0 /* this */
            iconst_0
            putfield io.vertx.core.eventbus.DeliveryOptions.localOnly:Z
         3: .line 74
            aload 0 /* this */
            aload 1 /* json */
            ldc "timeout"
            ldc 30000
            invokestatic java.lang.Long.valueOf:(J)Ljava/lang/Long;
            invokevirtual io.vertx.core.json.JsonObject.getLong:(Ljava/lang/String;Ljava/lang/Long;)Ljava/lang/Long;
            invokevirtual java.lang.Long.longValue:()J
            putfield io.vertx.core.eventbus.DeliveryOptions.timeout:J
         4: .line 75
            aload 0 /* this */
            aload 1 /* json */
            ldc "codecName"
            aconst_null
            invokevirtual io.vertx.core.json.JsonObject.getString:(Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;
            putfield io.vertx.core.eventbus.DeliveryOptions.codecName:Ljava/lang/String;
         5: .line 76
            aload 1 /* json */
            ldc "headers"
            aconst_null
            invokevirtual io.vertx.core.json.JsonObject.getJsonObject:(Ljava/lang/String;Lio/vertx/core/json/JsonObject;)Lio/vertx/core/json/JsonObject;
            astore 2 /* hdrs */
        start local 2 // io.vertx.core.json.JsonObject hdrs
         6: .line 77
            aload 2 /* hdrs */
            ifnull 14
         7: .line 78
            aload 0 /* this */
            new io.vertx.core.http.CaseInsensitiveHeaders
            dup
            invokespecial io.vertx.core.http.CaseInsensitiveHeaders.<init>:()V
            putfield io.vertx.core.eventbus.DeliveryOptions.headers:Lio/vertx/core/MultiMap;
         8: .line 79
            aload 2 /* hdrs */
            invokevirtual io.vertx.core.json.JsonObject.iterator:()Ljava/util/Iterator;
            astore 4
            goto 13
      StackMap locals: io.vertx.core.eventbus.DeliveryOptions io.vertx.core.json.JsonObject io.vertx.core.json.JsonObject 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 80
            aload 3 /* entry */
            invokeinterface java.util.Map$Entry.getValue:()Ljava/lang/Object;
            instanceof java.lang.String
            ifne 12
        11: .line 81
            new java.lang.IllegalStateException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Invalid type for message header value "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 3 /* entry */
            invokeinterface java.util.Map$Entry.getValue:()Ljava/lang/Object;
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
        12: .line 83
      StackMap locals: io.vertx.core.eventbus.DeliveryOptions io.vertx.core.json.JsonObject io.vertx.core.json.JsonObject java.util.Map$Entry java.util.Iterator
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.core.eventbus.DeliveryOptions.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.set:(Ljava/lang/String;Ljava/lang/String;)Lio/vertx/core/MultiMap;
            pop
        end local 3 // java.util.Map$Entry entry
        13: .line 79
      StackMap locals: io.vertx.core.eventbus.DeliveryOptions io.vertx.core.json.JsonObject io.vertx.core.json.JsonObject top java.util.Iterator
      StackMap stack:
            aload 4
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 9
        14: .line 86
      StackMap locals: io.vertx.core.eventbus.DeliveryOptions io.vertx.core.json.JsonObject io.vertx.core.json.JsonObject
      StackMap stack:
            aload 0 /* this */
            aload 1 /* json */
            ldc "localOnly"
            iconst_0
            invokestatic java.lang.Boolean.valueOf:(Z)Ljava/lang/Boolean;
            invokevirtual io.vertx.core.json.JsonObject.getBoolean:(Ljava/lang/String;Ljava/lang/Boolean;)Ljava/lang/Boolean;
            invokevirtual java.lang.Boolean.booleanValue:()Z
            putfield io.vertx.core.eventbus.DeliveryOptions.localOnly:Z
        15: .line 87
            return
        end local 2 // io.vertx.core.json.JsonObject hdrs
        end local 1 // io.vertx.core.json.JsonObject json
        end local 0 // io.vertx.core.eventbus.DeliveryOptions this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   16     0   this  Lio/vertx/core/eventbus/DeliveryOptions;
            0   16     1   json  Lio/vertx/core/json/JsonObject;
            6   16     2   hdrs  Lio/vertx/core/json/JsonObject;
           10   13     3  entry  Ljava/util/Map$Entry<Ljava/lang/String;Ljava/lang/Object;>;
    MethodParameters:
      Name  Flags
      json  

  public io.vertx.core.json.JsonObject toJson();
    descriptor: ()Lio/vertx/core/json/JsonObject;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=1
        start local 0 // io.vertx.core.eventbus.DeliveryOptions this
         0: .line 95
            new io.vertx.core.json.JsonObject
            dup
            invokespecial io.vertx.core.json.JsonObject.<init>:()V
            astore 1 /* json */
        start local 1 // io.vertx.core.json.JsonObject json
         1: .line 96
            aload 1 /* json */
            ldc "timeout"
            aload 0 /* this */
            getfield io.vertx.core.eventbus.DeliveryOptions.timeout:J
            invokestatic java.lang.Long.valueOf:(J)Ljava/lang/Long;
            invokevirtual io.vertx.core.json.JsonObject.put:(Ljava/lang/String;Ljava/lang/Long;)Lio/vertx/core/json/JsonObject;
            pop
         2: .line 97
            aload 0 /* this */
            getfield io.vertx.core.eventbus.DeliveryOptions.codecName:Ljava/lang/String;
            ifnull 3
            aload 1 /* json */
            ldc "codecName"
            aload 0 /* this */
            getfield io.vertx.core.eventbus.DeliveryOptions.codecName:Ljava/lang/String;
            invokevirtual io.vertx.core.json.JsonObject.put:(Ljava/lang/String;Ljava/lang/String;)Lio/vertx/core/json/JsonObject;
            pop
         3: .line 98
      StackMap locals: io.vertx.core.json.JsonObject
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.core.eventbus.DeliveryOptions.headers:Lio/vertx/core/MultiMap;
            ifnull 7
         4: .line 99
            new io.vertx.core.json.JsonObject
            dup
            invokespecial io.vertx.core.json.JsonObject.<init>:()V
            astore 2 /* hJson */
        start local 2 // io.vertx.core.json.JsonObject hJson
         5: .line 100
            aload 0 /* this */
            getfield io.vertx.core.eventbus.DeliveryOptions.headers:Lio/vertx/core/MultiMap;
            invokeinterface io.vertx.core.MultiMap.entries:()Ljava/util/List;
            aload 2 /* hJson */
            invokedynamic accept(Lio/vertx/core/json/JsonObject;)Ljava/util/function/Consumer;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;)V
                  io/vertx/core/eventbus/DeliveryOptions.lambda$0(Lio/vertx/core/json/JsonObject;Ljava/util/Map$Entry;)V (6)
                  (Ljava/util/Map$Entry;)V
            invokeinterface java.util.List.forEach:(Ljava/util/function/Consumer;)V
         6: .line 101
            aload 1 /* json */
            ldc "headers"
            aload 2 /* hJson */
            invokevirtual io.vertx.core.json.JsonObject.put:(Ljava/lang/String;Lio/vertx/core/json/JsonObject;)Lio/vertx/core/json/JsonObject;
            pop
        end local 2 // io.vertx.core.json.JsonObject hJson
         7: .line 103
      StackMap locals:
      StackMap stack:
            aload 1 /* json */
            ldc "localOnly"
            aload 0 /* this */
            getfield io.vertx.core.eventbus.DeliveryOptions.localOnly:Z
            invokestatic java.lang.Boolean.valueOf:(Z)Ljava/lang/Boolean;
            invokevirtual io.vertx.core.json.JsonObject.put:(Ljava/lang/String;Ljava/lang/Boolean;)Lio/vertx/core/json/JsonObject;
            pop
         8: .line 104
            aload 1 /* json */
            areturn
        end local 1 // io.vertx.core.json.JsonObject json
        end local 0 // io.vertx.core.eventbus.DeliveryOptions this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    9     0   this  Lio/vertx/core/eventbus/DeliveryOptions;
            1    9     1   json  Lio/vertx/core/json/JsonObject;
            5    7     2  hJson  Lio/vertx/core/json/JsonObject;

  public long getSendTimeout();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.vertx.core.eventbus.DeliveryOptions this
         0: .line 117
            aload 0 /* this */
            getfield io.vertx.core.eventbus.DeliveryOptions.timeout:J
            lreturn
        end local 0 // io.vertx.core.eventbus.DeliveryOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/eventbus/DeliveryOptions;

  public io.vertx.core.eventbus.DeliveryOptions setSendTimeout(long);
    descriptor: (J)Lio/vertx/core/eventbus/DeliveryOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // io.vertx.core.eventbus.DeliveryOptions this
        start local 1 // long timeout
         0: .line 127
            lload 1 /* timeout */
            lconst_1
            lcmp
            iflt 1
            iconst_1
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_0
      StackMap locals:
      StackMap stack: int
         2: ldc "sendTimeout must be >= 1"
            invokestatic io.vertx.core.impl.Arguments.require:(ZLjava/lang/String;)V
         3: .line 128
            aload 0 /* this */
            lload 1 /* timeout */
            putfield io.vertx.core.eventbus.DeliveryOptions.timeout:J
         4: .line 129
            aload 0 /* this */
            areturn
        end local 1 // long timeout
        end local 0 // io.vertx.core.eventbus.DeliveryOptions this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    5     0     this  Lio/vertx/core/eventbus/DeliveryOptions;
            0    5     1  timeout  J
    MethodParameters:
         Name  Flags
      timeout  

  public java.lang.String getCodecName();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.eventbus.DeliveryOptions this
         0: .line 141
            aload 0 /* this */
            getfield io.vertx.core.eventbus.DeliveryOptions.codecName:Ljava/lang/String;
            areturn
        end local 0 // io.vertx.core.eventbus.DeliveryOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/eventbus/DeliveryOptions;

  public io.vertx.core.eventbus.DeliveryOptions setCodecName(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/core/eventbus/DeliveryOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.eventbus.DeliveryOptions this
        start local 1 // java.lang.String codecName
         0: .line 151
            aload 0 /* this */
            aload 1 /* codecName */
            putfield io.vertx.core.eventbus.DeliveryOptions.codecName:Ljava/lang/String;
         1: .line 152
            aload 0 /* this */
            areturn
        end local 1 // java.lang.String codecName
        end local 0 // io.vertx.core.eventbus.DeliveryOptions this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lio/vertx/core/eventbus/DeliveryOptions;
            0    2     1  codecName  Ljava/lang/String;
    MethodParameters:
           Name  Flags
      codecName  

  public io.vertx.core.eventbus.DeliveryOptions addHeader(java.lang.String, java.lang.String);
    descriptor: (Ljava/lang/String;Ljava/lang/String;)Lio/vertx/core/eventbus/DeliveryOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.vertx.core.eventbus.DeliveryOptions this
        start local 1 // java.lang.String key
        start local 2 // java.lang.String value
         0: .line 166
            aload 0 /* this */
            invokevirtual io.vertx.core.eventbus.DeliveryOptions.checkHeaders:()V
         1: .line 167
            aload 1 /* key */
            ldc "no null key accepted"
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            pop
         2: .line 168
            aload 2 /* value */
            ldc "no null value accepted"
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            pop
         3: .line 169
            aload 0 /* this */
            getfield io.vertx.core.eventbus.DeliveryOptions.headers:Lio/vertx/core/MultiMap;
            aload 1 /* key */
            aload 2 /* value */
            invokeinterface io.vertx.core.MultiMap.add:(Ljava/lang/String;Ljava/lang/String;)Lio/vertx/core/MultiMap;
            pop
         4: .line 170
            aload 0 /* this */
            areturn
        end local 2 // java.lang.String value
        end local 1 // java.lang.String key
        end local 0 // io.vertx.core.eventbus.DeliveryOptions this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    5     0   this  Lio/vertx/core/eventbus/DeliveryOptions;
            0    5     1    key  Ljava/lang/String;
            0    5     2  value  Ljava/lang/String;
    MethodParameters:
       Name  Flags
      key    
      value  

  public io.vertx.core.eventbus.DeliveryOptions setHeaders(io.vertx.core.MultiMap);
    descriptor: (Lio/vertx/core/MultiMap;)Lio/vertx/core/eventbus/DeliveryOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.eventbus.DeliveryOptions this
        start local 1 // io.vertx.core.MultiMap headers
         0: .line 181
            aload 0 /* this */
            aload 1 /* headers */
            putfield io.vertx.core.eventbus.DeliveryOptions.headers:Lio/vertx/core/MultiMap;
         1: .line 182
            aload 0 /* this */
            areturn
        end local 1 // io.vertx.core.MultiMap headers
        end local 0 // io.vertx.core.eventbus.DeliveryOptions this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lio/vertx/core/eventbus/DeliveryOptions;
            0    2     1  headers  Lio/vertx/core/MultiMap;
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.GenIgnore()
    RuntimeVisibleTypeAnnotations: 
      METHOD_RETURN
        io.vertx.codegen.annotations.GenIgnore()
    MethodParameters:
         Name  Flags
      headers  

  public io.vertx.core.MultiMap getHeaders();
    descriptor: ()Lio/vertx/core/MultiMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.eventbus.DeliveryOptions this
         0: .line 192
            aload 0 /* this */
            getfield io.vertx.core.eventbus.DeliveryOptions.headers:Lio/vertx/core/MultiMap;
            areturn
        end local 0 // io.vertx.core.eventbus.DeliveryOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/eventbus/DeliveryOptions;
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.GenIgnore()
    RuntimeVisibleTypeAnnotations: 
      METHOD_RETURN
        io.vertx.codegen.annotations.GenIgnore()

  private void checkHeaders();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // io.vertx.core.eventbus.DeliveryOptions this
         0: .line 196
            aload 0 /* this */
            getfield io.vertx.core.eventbus.DeliveryOptions.headers:Lio/vertx/core/MultiMap;
            ifnonnull 2
         1: .line 197
            aload 0 /* this */
            new io.vertx.core.http.CaseInsensitiveHeaders
            dup
            invokespecial io.vertx.core.http.CaseInsensitiveHeaders.<init>:()V
            putfield io.vertx.core.eventbus.DeliveryOptions.headers:Lio/vertx/core/MultiMap;
         2: .line 199
      StackMap locals:
      StackMap stack:
            return
        end local 0 // io.vertx.core.eventbus.DeliveryOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/vertx/core/eventbus/DeliveryOptions;

  public boolean isLocalOnly();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.eventbus.DeliveryOptions this
         0: .line 205
            aload 0 /* this */
            getfield io.vertx.core.eventbus.DeliveryOptions.localOnly:Z
            ireturn
        end local 0 // io.vertx.core.eventbus.DeliveryOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/eventbus/DeliveryOptions;

  public io.vertx.core.eventbus.DeliveryOptions setLocalOnly(boolean);
    descriptor: (Z)Lio/vertx/core/eventbus/DeliveryOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.eventbus.DeliveryOptions this
        start local 1 // boolean localOnly
         0: .line 218
            aload 0 /* this */
            iload 1 /* localOnly */
            putfield io.vertx.core.eventbus.DeliveryOptions.localOnly:Z
         1: .line 219
            aload 0 /* this */
            areturn
        end local 1 // boolean localOnly
        end local 0 // io.vertx.core.eventbus.DeliveryOptions this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lio/vertx/core/eventbus/DeliveryOptions;
            0    2     1  localOnly  Z
    MethodParameters:
           Name  Flags
      localOnly  

  private static void lambda$0(io.vertx.core.json.JsonObject, java.util.Map$Entry);
    descriptor: (Lio/vertx/core/json/JsonObject;Ljava/util/Map$Entry;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=3, locals=2, args_size=2
        start local 1 // java.util.Map$Entry entry
         0: .line 100
            aload 0
            aload 1 /* entry */
            invokeinterface java.util.Map$Entry.getKey:()Ljava/lang/Object;
            checkcast java.lang.String
            aload 1 /* entry */
            invokeinterface java.util.Map$Entry.getValue:()Ljava/lang/Object;
            checkcast java.lang.String
            invokevirtual io.vertx.core.json.JsonObject.put:(Ljava/lang/String;Ljava/lang/String;)Lio/vertx/core/json/JsonObject;
            return
        end local 1 // java.util.Map$Entry entry
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     1  entry  Ljava/util/Map$Entry<Ljava/lang/String;Ljava/lang/String;>;
}
SourceFile: "DeliveryOptions.java"
InnerClasses:
  public final Lookup = java.lang.invoke.MethodHandles$Lookup of java.lang.invoke.MethodHandles
  public abstract Entry = java.util.Map$Entry of java.util.Map
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.DataObject()