public class io.vertx.core.eventbus.impl.EventBusImpl implements io.vertx.core.eventbus.EventBus, io.vertx.core.spi.metrics.MetricsProvider
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: io.vertx.core.eventbus.impl.EventBusImpl
  super_class: java.lang.Object
{
  private static final io.vertx.core.logging.Logger log;
    descriptor: Lio/vertx/core/logging/Logger;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private final java.util.List<io.vertx.core.Handler<io.vertx.core.eventbus.DeliveryContext>> sendInterceptors;
    descriptor: Ljava/util/List;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/List<Lio/vertx/core/Handler<Lio/vertx/core/eventbus/DeliveryContext;>;>;

  private final java.util.List<io.vertx.core.Handler<io.vertx.core.eventbus.DeliveryContext>> receiveInterceptors;
    descriptor: Ljava/util/List;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/List<Lio/vertx/core/Handler<Lio/vertx/core/eventbus/DeliveryContext;>;>;

  private final java.util.concurrent.atomic.AtomicLong replySequence;
    descriptor: Ljava/util/concurrent/atomic/AtomicLong;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

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

  protected final io.vertx.core.spi.metrics.EventBusMetrics metrics;
    descriptor: Lio/vertx/core/spi/metrics/EventBusMetrics;
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL

  protected final java.util.concurrent.ConcurrentMap<java.lang.String, io.vertx.core.impl.utils.ConcurrentCyclicSequence<io.vertx.core.eventbus.impl.HandlerHolder>> handlerMap;
    descriptor: Ljava/util/concurrent/ConcurrentMap;
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Signature: Ljava/util/concurrent/ConcurrentMap<Ljava/lang/String;Lio/vertx/core/impl/utils/ConcurrentCyclicSequence<Lio/vertx/core/eventbus/impl/HandlerHolder;>;>;

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

  protected volatile boolean started;
    descriptor: Z
    flags: (0x0044) ACC_PROTECTED, ACC_VOLATILE

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

  public void <init>(io.vertx.core.impl.VertxInternal);
    descriptor: (Lio/vertx/core/impl/VertxInternal;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // io.vertx.core.eventbus.impl.EventBusImpl this
        start local 1 // io.vertx.core.impl.VertxInternal vertx
         0: .line 56
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 47
            aload 0 /* this */
            new java.util.concurrent.CopyOnWriteArrayList
            dup
            invokespecial java.util.concurrent.CopyOnWriteArrayList.<init>:()V
            putfield io.vertx.core.eventbus.impl.EventBusImpl.sendInterceptors:Ljava/util/List;
         2: .line 48
            aload 0 /* this */
            new java.util.concurrent.CopyOnWriteArrayList
            dup
            invokespecial java.util.concurrent.CopyOnWriteArrayList.<init>:()V
            putfield io.vertx.core.eventbus.impl.EventBusImpl.receiveInterceptors:Ljava/util/List;
         3: .line 49
            aload 0 /* this */
            new java.util.concurrent.atomic.AtomicLong
            dup
            lconst_0
            invokespecial java.util.concurrent.atomic.AtomicLong.<init>:(J)V
            putfield io.vertx.core.eventbus.impl.EventBusImpl.replySequence:Ljava/util/concurrent/atomic/AtomicLong;
         4: .line 52
            aload 0 /* this */
            new java.util.concurrent.ConcurrentHashMap
            dup
            invokespecial java.util.concurrent.ConcurrentHashMap.<init>:()V
            putfield io.vertx.core.eventbus.impl.EventBusImpl.handlerMap:Ljava/util/concurrent/ConcurrentMap;
         5: .line 53
            aload 0 /* this */
            new io.vertx.core.eventbus.impl.CodecManager
            dup
            invokespecial io.vertx.core.eventbus.impl.CodecManager.<init>:()V
            putfield io.vertx.core.eventbus.impl.EventBusImpl.codecManager:Lio/vertx/core/eventbus/impl/CodecManager;
         6: .line 57
            aload 1 /* vertx */
            invokeinterface io.vertx.core.impl.VertxInternal.metricsSPI:()Lio/vertx/core/spi/metrics/VertxMetrics;
            astore 2 /* metrics */
        start local 2 // io.vertx.core.spi.metrics.VertxMetrics metrics
         7: .line 58
            aload 0 /* this */
            aload 1 /* vertx */
            putfield io.vertx.core.eventbus.impl.EventBusImpl.vertx:Lio/vertx/core/impl/VertxInternal;
         8: .line 59
            aload 0 /* this */
            aload 2 /* metrics */
            ifnull 9
            aload 2 /* metrics */
            invokeinterface io.vertx.core.spi.metrics.VertxMetrics.createEventBusMetrics:()Lio/vertx/core/spi/metrics/EventBusMetrics;
            goto 10
      StackMap locals: io.vertx.core.eventbus.impl.EventBusImpl io.vertx.core.impl.VertxInternal io.vertx.core.spi.metrics.VertxMetrics
      StackMap stack: io.vertx.core.eventbus.impl.EventBusImpl
         9: aconst_null
      StackMap locals: io.vertx.core.eventbus.impl.EventBusImpl io.vertx.core.impl.VertxInternal io.vertx.core.spi.metrics.VertxMetrics
      StackMap stack: io.vertx.core.eventbus.impl.EventBusImpl io.vertx.core.spi.metrics.EventBusMetrics
        10: putfield io.vertx.core.eventbus.impl.EventBusImpl.metrics:Lio/vertx/core/spi/metrics/EventBusMetrics;
        11: .line 60
            return
        end local 2 // io.vertx.core.spi.metrics.VertxMetrics metrics
        end local 1 // io.vertx.core.impl.VertxInternal vertx
        end local 0 // io.vertx.core.eventbus.impl.EventBusImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   12     0     this  Lio/vertx/core/eventbus/impl/EventBusImpl;
            0   12     1    vertx  Lio/vertx/core/impl/VertxInternal;
            7   12     2  metrics  Lio/vertx/core/spi/metrics/VertxMetrics;
    MethodParameters:
       Name  Flags
      vertx  

  public <T> io.vertx.core.eventbus.EventBus addOutboundInterceptor(io.vertx.core.Handler<io.vertx.core.eventbus.DeliveryContext<T>>);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/core/eventbus/EventBus;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.eventbus.impl.EventBusImpl this
        start local 1 // io.vertx.core.Handler interceptor
         0: .line 64
            aload 0 /* this */
            getfield io.vertx.core.eventbus.impl.EventBusImpl.sendInterceptors:Ljava/util/List;
            aload 1 /* interceptor */
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
         1: .line 65
            aload 0 /* this */
            areturn
        end local 1 // io.vertx.core.Handler interceptor
        end local 0 // io.vertx.core.eventbus.impl.EventBusImpl this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    2     0         this  Lio/vertx/core/eventbus/impl/EventBusImpl;
            0    2     1  interceptor  Lio/vertx/core/Handler<Lio/vertx/core/eventbus/DeliveryContext<TT;>;>;
    Signature: <T:Ljava/lang/Object;>(Lio/vertx/core/Handler<Lio/vertx/core/eventbus/DeliveryContext<TT;>;>;)Lio/vertx/core/eventbus/EventBus;
    MethodParameters:
             Name  Flags
      interceptor  

  public <T> io.vertx.core.eventbus.EventBus addInboundInterceptor(io.vertx.core.Handler<io.vertx.core.eventbus.DeliveryContext<T>>);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/core/eventbus/EventBus;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.eventbus.impl.EventBusImpl this
        start local 1 // io.vertx.core.Handler interceptor
         0: .line 70
            aload 0 /* this */
            getfield io.vertx.core.eventbus.impl.EventBusImpl.receiveInterceptors:Ljava/util/List;
            aload 1 /* interceptor */
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
         1: .line 71
            aload 0 /* this */
            areturn
        end local 1 // io.vertx.core.Handler interceptor
        end local 0 // io.vertx.core.eventbus.impl.EventBusImpl this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    2     0         this  Lio/vertx/core/eventbus/impl/EventBusImpl;
            0    2     1  interceptor  Lio/vertx/core/Handler<Lio/vertx/core/eventbus/DeliveryContext<TT;>;>;
    Signature: <T:Ljava/lang/Object;>(Lio/vertx/core/Handler<Lio/vertx/core/eventbus/DeliveryContext<TT;>;>;)Lio/vertx/core/eventbus/EventBus;
    MethodParameters:
             Name  Flags
      interceptor  

  public <T> io.vertx.core.eventbus.EventBus removeOutboundInterceptor(io.vertx.core.Handler<io.vertx.core.eventbus.DeliveryContext<T>>);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/core/eventbus/EventBus;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.eventbus.impl.EventBusImpl this
        start local 1 // io.vertx.core.Handler interceptor
         0: .line 76
            aload 0 /* this */
            getfield io.vertx.core.eventbus.impl.EventBusImpl.sendInterceptors:Ljava/util/List;
            aload 1 /* interceptor */
            invokeinterface java.util.List.remove:(Ljava/lang/Object;)Z
            pop
         1: .line 77
            aload 0 /* this */
            areturn
        end local 1 // io.vertx.core.Handler interceptor
        end local 0 // io.vertx.core.eventbus.impl.EventBusImpl this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    2     0         this  Lio/vertx/core/eventbus/impl/EventBusImpl;
            0    2     1  interceptor  Lio/vertx/core/Handler<Lio/vertx/core/eventbus/DeliveryContext<TT;>;>;
    Signature: <T:Ljava/lang/Object;>(Lio/vertx/core/Handler<Lio/vertx/core/eventbus/DeliveryContext<TT;>;>;)Lio/vertx/core/eventbus/EventBus;
    MethodParameters:
             Name  Flags
      interceptor  

  public <T> io.vertx.core.eventbus.EventBus removeInboundInterceptor(io.vertx.core.Handler<io.vertx.core.eventbus.DeliveryContext<T>>);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/core/eventbus/EventBus;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.eventbus.impl.EventBusImpl this
        start local 1 // io.vertx.core.Handler interceptor
         0: .line 82
            aload 0 /* this */
            getfield io.vertx.core.eventbus.impl.EventBusImpl.receiveInterceptors:Ljava/util/List;
            aload 1 /* interceptor */
            invokeinterface java.util.List.remove:(Ljava/lang/Object;)Z
            pop
         1: .line 83
            aload 0 /* this */
            areturn
        end local 1 // io.vertx.core.Handler interceptor
        end local 0 // io.vertx.core.eventbus.impl.EventBusImpl this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    2     0         this  Lio/vertx/core/eventbus/impl/EventBusImpl;
            0    2     1  interceptor  Lio/vertx/core/Handler<Lio/vertx/core/eventbus/DeliveryContext<TT;>;>;
    Signature: <T:Ljava/lang/Object;>(Lio/vertx/core/Handler<Lio/vertx/core/eventbus/DeliveryContext<TT;>;>;)Lio/vertx/core/eventbus/EventBus;
    MethodParameters:
             Name  Flags
      interceptor  

  public synchronized void start(io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>);
    descriptor: (Lio/vertx/core/Handler;)V
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.vertx.core.eventbus.impl.EventBusImpl this
        start local 1 // io.vertx.core.Handler completionHandler
         0: .line 87
            aload 0 /* this */
            getfield io.vertx.core.eventbus.impl.EventBusImpl.started:Z
            ifeq 2
         1: .line 88
            new java.lang.IllegalStateException
            dup
            ldc "Already started"
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 90
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_1
            putfield io.vertx.core.eventbus.impl.EventBusImpl.started:Z
         3: .line 91
            aload 1 /* completionHandler */
            invokestatic io.vertx.core.Future.succeededFuture:()Lio/vertx/core/Future;
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
         4: .line 92
            return
        end local 1 // io.vertx.core.Handler completionHandler
        end local 0 // io.vertx.core.eventbus.impl.EventBusImpl this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0    5     0               this  Lio/vertx/core/eventbus/impl/EventBusImpl;
            0    5     1  completionHandler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;
    Signature: (Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;)V
    MethodParameters:
                   Name  Flags
      completionHandler  

  public io.vertx.core.eventbus.EventBus send(java.lang.String, java.lang.Object);
    descriptor: (Ljava/lang/String;Ljava/lang/Object;)Lio/vertx/core/eventbus/EventBus;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // io.vertx.core.eventbus.impl.EventBusImpl this
        start local 1 // java.lang.String address
        start local 2 // java.lang.Object message
         0: .line 96
            aload 0 /* this */
            aload 1 /* address */
            aload 2 /* message */
            new io.vertx.core.eventbus.DeliveryOptions
            dup
            invokespecial io.vertx.core.eventbus.DeliveryOptions.<init>:()V
            aconst_null
            invokevirtual io.vertx.core.eventbus.impl.EventBusImpl.send:(Ljava/lang/String;Ljava/lang/Object;Lio/vertx/core/eventbus/DeliveryOptions;Lio/vertx/core/Handler;)Lio/vertx/core/eventbus/EventBus;
            areturn
        end local 2 // java.lang.Object message
        end local 1 // java.lang.String address
        end local 0 // io.vertx.core.eventbus.impl.EventBusImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lio/vertx/core/eventbus/impl/EventBusImpl;
            0    1     1  address  Ljava/lang/String;
            0    1     2  message  Ljava/lang/Object;
    MethodParameters:
         Name  Flags
      address  
      message  

  public <T> io.vertx.core.eventbus.EventBus send(java.lang.String, , io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.core.eventbus.Message<T>>>);
    descriptor: (Ljava/lang/String;Ljava/lang/Object;Lio/vertx/core/Handler;)Lio/vertx/core/eventbus/EventBus;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=4
        start local 0 // io.vertx.core.eventbus.impl.EventBusImpl this
        start local 1 // java.lang.String address
        start local 2 // java.lang.Object message
        start local 3 // io.vertx.core.Handler replyHandler
         0: .line 101
            aload 0 /* this */
            aload 1 /* address */
            aload 2 /* message */
            new io.vertx.core.eventbus.DeliveryOptions
            dup
            invokespecial io.vertx.core.eventbus.DeliveryOptions.<init>:()V
            aload 3 /* replyHandler */
            invokevirtual io.vertx.core.eventbus.impl.EventBusImpl.send:(Ljava/lang/String;Ljava/lang/Object;Lio/vertx/core/eventbus/DeliveryOptions;Lio/vertx/core/Handler;)Lio/vertx/core/eventbus/EventBus;
            areturn
        end local 3 // io.vertx.core.Handler replyHandler
        end local 2 // java.lang.Object message
        end local 1 // java.lang.String address
        end local 0 // io.vertx.core.eventbus.impl.EventBusImpl this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    1     0          this  Lio/vertx/core/eventbus/impl/EventBusImpl;
            0    1     1       address  Ljava/lang/String;
            0    1     2       message  Ljava/lang/Object;
            0    1     3  replyHandler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/core/eventbus/Message<TT;>;>;>;
    Signature: <T:Ljava/lang/Object;>(Ljava/lang/String;Ljava/lang/Object;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/core/eventbus/Message<TT;>;>;>;)Lio/vertx/core/eventbus/EventBus;
    MethodParameters:
              Name  Flags
      address       
      message       
      replyHandler  

  public io.vertx.core.eventbus.EventBus send(java.lang.String, java.lang.Object, io.vertx.core.eventbus.DeliveryOptions);
    descriptor: (Ljava/lang/String;Ljava/lang/Object;Lio/vertx/core/eventbus/DeliveryOptions;)Lio/vertx/core/eventbus/EventBus;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=4
        start local 0 // io.vertx.core.eventbus.impl.EventBusImpl this
        start local 1 // java.lang.String address
        start local 2 // java.lang.Object message
        start local 3 // io.vertx.core.eventbus.DeliveryOptions options
         0: .line 106
            aload 0 /* this */
            aload 1 /* address */
            aload 2 /* message */
            aload 3 /* options */
            aconst_null
            invokevirtual io.vertx.core.eventbus.impl.EventBusImpl.send:(Ljava/lang/String;Ljava/lang/Object;Lio/vertx/core/eventbus/DeliveryOptions;Lio/vertx/core/Handler;)Lio/vertx/core/eventbus/EventBus;
            areturn
        end local 3 // io.vertx.core.eventbus.DeliveryOptions options
        end local 2 // java.lang.Object message
        end local 1 // java.lang.String address
        end local 0 // io.vertx.core.eventbus.impl.EventBusImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lio/vertx/core/eventbus/impl/EventBusImpl;
            0    1     1  address  Ljava/lang/String;
            0    1     2  message  Ljava/lang/Object;
            0    1     3  options  Lio/vertx/core/eventbus/DeliveryOptions;
    MethodParameters:
         Name  Flags
      address  
      message  
      options  

  public <T> io.vertx.core.eventbus.EventBus send(java.lang.String, , io.vertx.core.eventbus.DeliveryOptions, io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.core.eventbus.Message<T>>>);
    descriptor: (Ljava/lang/String;Ljava/lang/Object;Lio/vertx/core/eventbus/DeliveryOptions;Lio/vertx/core/Handler;)Lio/vertx/core/eventbus/EventBus;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=8, locals=5, args_size=5
        start local 0 // io.vertx.core.eventbus.impl.EventBusImpl this
        start local 1 // java.lang.String address
        start local 2 // java.lang.Object message
        start local 3 // io.vertx.core.eventbus.DeliveryOptions options
        start local 4 // io.vertx.core.Handler replyHandler
         0: .line 111
            aload 0 /* this */
            aload 0 /* this */
            iconst_1
            aload 1 /* address */
            aload 3 /* options */
            invokevirtual io.vertx.core.eventbus.DeliveryOptions.getHeaders:()Lio/vertx/core/MultiMap;
            aload 2 /* message */
            aload 3 /* options */
            invokevirtual io.vertx.core.eventbus.DeliveryOptions.getCodecName:()Ljava/lang/String;
            aconst_null
            invokevirtual io.vertx.core.eventbus.impl.EventBusImpl.createMessage:(ZLjava/lang/String;Lio/vertx/core/MultiMap;Ljava/lang/Object;Ljava/lang/String;Lio/vertx/core/Handler;)Lio/vertx/core/eventbus/impl/MessageImpl;
            aload 3 /* options */
            aload 4 /* replyHandler */
            invokevirtual io.vertx.core.eventbus.impl.EventBusImpl.sendOrPubInternal:(Lio/vertx/core/eventbus/impl/MessageImpl;Lio/vertx/core/eventbus/DeliveryOptions;Lio/vertx/core/Handler;)V
         1: .line 112
            aload 0 /* this */
            areturn
        end local 4 // io.vertx.core.Handler replyHandler
        end local 3 // io.vertx.core.eventbus.DeliveryOptions options
        end local 2 // java.lang.Object message
        end local 1 // java.lang.String address
        end local 0 // io.vertx.core.eventbus.impl.EventBusImpl this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    2     0          this  Lio/vertx/core/eventbus/impl/EventBusImpl;
            0    2     1       address  Ljava/lang/String;
            0    2     2       message  Ljava/lang/Object;
            0    2     3       options  Lio/vertx/core/eventbus/DeliveryOptions;
            0    2     4  replyHandler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/core/eventbus/Message<TT;>;>;>;
    Signature: <T:Ljava/lang/Object;>(Ljava/lang/String;Ljava/lang/Object;Lio/vertx/core/eventbus/DeliveryOptions;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/core/eventbus/Message<TT;>;>;>;)Lio/vertx/core/eventbus/EventBus;
    MethodParameters:
              Name  Flags
      address       
      message       
      options       
      replyHandler  

  public <T> io.vertx.core.eventbus.MessageProducer<T> sender(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/core/eventbus/MessageProducer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=2, args_size=2
        start local 0 // io.vertx.core.eventbus.impl.EventBusImpl this
        start local 1 // java.lang.String address
         0: .line 117
            aload 1 /* address */
            ldc "address"
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            pop
         1: .line 118
            new io.vertx.core.eventbus.impl.MessageProducerImpl
            dup
            aload 0 /* this */
            getfield io.vertx.core.eventbus.impl.EventBusImpl.vertx:Lio/vertx/core/impl/VertxInternal;
            aload 1 /* address */
            iconst_1
            new io.vertx.core.eventbus.DeliveryOptions
            dup
            invokespecial io.vertx.core.eventbus.DeliveryOptions.<init>:()V
            invokespecial io.vertx.core.eventbus.impl.MessageProducerImpl.<init>:(Lio/vertx/core/Vertx;Ljava/lang/String;ZLio/vertx/core/eventbus/DeliveryOptions;)V
            areturn
        end local 1 // java.lang.String address
        end local 0 // io.vertx.core.eventbus.impl.EventBusImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lio/vertx/core/eventbus/impl/EventBusImpl;
            0    2     1  address  Ljava/lang/String;
    Signature: <T:Ljava/lang/Object;>(Ljava/lang/String;)Lio/vertx/core/eventbus/MessageProducer<TT;>;
    MethodParameters:
         Name  Flags
      address  

  public <T> io.vertx.core.eventbus.MessageProducer<T> sender(java.lang.String, io.vertx.core.eventbus.DeliveryOptions);
    descriptor: (Ljava/lang/String;Lio/vertx/core/eventbus/DeliveryOptions;)Lio/vertx/core/eventbus/MessageProducer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=3, args_size=3
        start local 0 // io.vertx.core.eventbus.impl.EventBusImpl this
        start local 1 // java.lang.String address
        start local 2 // io.vertx.core.eventbus.DeliveryOptions options
         0: .line 123
            aload 1 /* address */
            ldc "address"
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            pop
         1: .line 124
            aload 2 /* options */
            ldc "options"
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            pop
         2: .line 125
            new io.vertx.core.eventbus.impl.MessageProducerImpl
            dup
            aload 0 /* this */
            getfield io.vertx.core.eventbus.impl.EventBusImpl.vertx:Lio/vertx/core/impl/VertxInternal;
            aload 1 /* address */
            iconst_1
            aload 2 /* options */
            invokespecial io.vertx.core.eventbus.impl.MessageProducerImpl.<init>:(Lio/vertx/core/Vertx;Ljava/lang/String;ZLio/vertx/core/eventbus/DeliveryOptions;)V
            areturn
        end local 2 // io.vertx.core.eventbus.DeliveryOptions options
        end local 1 // java.lang.String address
        end local 0 // io.vertx.core.eventbus.impl.EventBusImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0     this  Lio/vertx/core/eventbus/impl/EventBusImpl;
            0    3     1  address  Ljava/lang/String;
            0    3     2  options  Lio/vertx/core/eventbus/DeliveryOptions;
    Signature: <T:Ljava/lang/Object;>(Ljava/lang/String;Lio/vertx/core/eventbus/DeliveryOptions;)Lio/vertx/core/eventbus/MessageProducer<TT;>;
    MethodParameters:
         Name  Flags
      address  
      options  

  public <T> io.vertx.core.eventbus.MessageProducer<T> publisher(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/core/eventbus/MessageProducer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=2, args_size=2
        start local 0 // io.vertx.core.eventbus.impl.EventBusImpl this
        start local 1 // java.lang.String address
         0: .line 130
            aload 1 /* address */
            ldc "address"
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            pop
         1: .line 131
            new io.vertx.core.eventbus.impl.MessageProducerImpl
            dup
            aload 0 /* this */
            getfield io.vertx.core.eventbus.impl.EventBusImpl.vertx:Lio/vertx/core/impl/VertxInternal;
            aload 1 /* address */
            iconst_0
            new io.vertx.core.eventbus.DeliveryOptions
            dup
            invokespecial io.vertx.core.eventbus.DeliveryOptions.<init>:()V
            invokespecial io.vertx.core.eventbus.impl.MessageProducerImpl.<init>:(Lio/vertx/core/Vertx;Ljava/lang/String;ZLio/vertx/core/eventbus/DeliveryOptions;)V
            areturn
        end local 1 // java.lang.String address
        end local 0 // io.vertx.core.eventbus.impl.EventBusImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lio/vertx/core/eventbus/impl/EventBusImpl;
            0    2     1  address  Ljava/lang/String;
    Signature: <T:Ljava/lang/Object;>(Ljava/lang/String;)Lio/vertx/core/eventbus/MessageProducer<TT;>;
    MethodParameters:
         Name  Flags
      address  

  public <T> io.vertx.core.eventbus.MessageProducer<T> publisher(java.lang.String, io.vertx.core.eventbus.DeliveryOptions);
    descriptor: (Ljava/lang/String;Lio/vertx/core/eventbus/DeliveryOptions;)Lio/vertx/core/eventbus/MessageProducer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=3, args_size=3
        start local 0 // io.vertx.core.eventbus.impl.EventBusImpl this
        start local 1 // java.lang.String address
        start local 2 // io.vertx.core.eventbus.DeliveryOptions options
         0: .line 136
            aload 1 /* address */
            ldc "address"
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            pop
         1: .line 137
            aload 2 /* options */
            ldc "options"
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            pop
         2: .line 138
            new io.vertx.core.eventbus.impl.MessageProducerImpl
            dup
            aload 0 /* this */
            getfield io.vertx.core.eventbus.impl.EventBusImpl.vertx:Lio/vertx/core/impl/VertxInternal;
            aload 1 /* address */
            iconst_0
            aload 2 /* options */
            invokespecial io.vertx.core.eventbus.impl.MessageProducerImpl.<init>:(Lio/vertx/core/Vertx;Ljava/lang/String;ZLio/vertx/core/eventbus/DeliveryOptions;)V
            areturn
        end local 2 // io.vertx.core.eventbus.DeliveryOptions options
        end local 1 // java.lang.String address
        end local 0 // io.vertx.core.eventbus.impl.EventBusImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0     this  Lio/vertx/core/eventbus/impl/EventBusImpl;
            0    3     1  address  Ljava/lang/String;
            0    3     2  options  Lio/vertx/core/eventbus/DeliveryOptions;
    Signature: <T:Ljava/lang/Object;>(Ljava/lang/String;Lio/vertx/core/eventbus/DeliveryOptions;)Lio/vertx/core/eventbus/MessageProducer<TT;>;
    MethodParameters:
         Name  Flags
      address  
      options  

  public io.vertx.core.eventbus.EventBus publish(java.lang.String, java.lang.Object);
    descriptor: (Ljava/lang/String;Ljava/lang/Object;)Lio/vertx/core/eventbus/EventBus;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // io.vertx.core.eventbus.impl.EventBusImpl this
        start local 1 // java.lang.String address
        start local 2 // java.lang.Object message
         0: .line 143
            aload 0 /* this */
            aload 1 /* address */
            aload 2 /* message */
            new io.vertx.core.eventbus.DeliveryOptions
            dup
            invokespecial io.vertx.core.eventbus.DeliveryOptions.<init>:()V
            invokevirtual io.vertx.core.eventbus.impl.EventBusImpl.publish:(Ljava/lang/String;Ljava/lang/Object;Lio/vertx/core/eventbus/DeliveryOptions;)Lio/vertx/core/eventbus/EventBus;
            areturn
        end local 2 // java.lang.Object message
        end local 1 // java.lang.String address
        end local 0 // io.vertx.core.eventbus.impl.EventBusImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lio/vertx/core/eventbus/impl/EventBusImpl;
            0    1     1  address  Ljava/lang/String;
            0    1     2  message  Ljava/lang/Object;
    MethodParameters:
         Name  Flags
      address  
      message  

  public io.vertx.core.eventbus.EventBus publish(java.lang.String, java.lang.Object, io.vertx.core.eventbus.DeliveryOptions);
    descriptor: (Ljava/lang/String;Ljava/lang/Object;Lio/vertx/core/eventbus/DeliveryOptions;)Lio/vertx/core/eventbus/EventBus;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=8, locals=4, args_size=4
        start local 0 // io.vertx.core.eventbus.impl.EventBusImpl this
        start local 1 // java.lang.String address
        start local 2 // java.lang.Object message
        start local 3 // io.vertx.core.eventbus.DeliveryOptions options
         0: .line 148
            aload 0 /* this */
            aload 0 /* this */
            iconst_0
            aload 1 /* address */
            aload 3 /* options */
            invokevirtual io.vertx.core.eventbus.DeliveryOptions.getHeaders:()Lio/vertx/core/MultiMap;
            aload 2 /* message */
            aload 3 /* options */
            invokevirtual io.vertx.core.eventbus.DeliveryOptions.getCodecName:()Ljava/lang/String;
            aconst_null
            invokevirtual io.vertx.core.eventbus.impl.EventBusImpl.createMessage:(ZLjava/lang/String;Lio/vertx/core/MultiMap;Ljava/lang/Object;Ljava/lang/String;Lio/vertx/core/Handler;)Lio/vertx/core/eventbus/impl/MessageImpl;
            aload 3 /* options */
            aconst_null
            invokevirtual io.vertx.core.eventbus.impl.EventBusImpl.sendOrPubInternal:(Lio/vertx/core/eventbus/impl/MessageImpl;Lio/vertx/core/eventbus/DeliveryOptions;Lio/vertx/core/Handler;)V
         1: .line 149
            aload 0 /* this */
            areturn
        end local 3 // io.vertx.core.eventbus.DeliveryOptions options
        end local 2 // java.lang.Object message
        end local 1 // java.lang.String address
        end local 0 // io.vertx.core.eventbus.impl.EventBusImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lio/vertx/core/eventbus/impl/EventBusImpl;
            0    2     1  address  Ljava/lang/String;
            0    2     2  message  Ljava/lang/Object;
            0    2     3  options  Lio/vertx/core/eventbus/DeliveryOptions;
    MethodParameters:
         Name  Flags
      address  
      message  
      options  

  public <T> io.vertx.core.eventbus.MessageConsumer<T> consumer(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/core/eventbus/MessageConsumer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=11, locals=2, args_size=2
        start local 0 // io.vertx.core.eventbus.impl.EventBusImpl this
        start local 1 // java.lang.String address
         0: .line 154
            aload 0 /* this */
            invokevirtual io.vertx.core.eventbus.impl.EventBusImpl.checkStarted:()V
         1: .line 155
            aload 1 /* address */
            ldc "address"
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            pop
         2: .line 156
            new io.vertx.core.eventbus.impl.HandlerRegistration
            dup
            aload 0 /* this */
            getfield io.vertx.core.eventbus.impl.EventBusImpl.vertx:Lio/vertx/core/impl/VertxInternal;
            aload 0 /* this */
            getfield io.vertx.core.eventbus.impl.EventBusImpl.metrics:Lio/vertx/core/spi/metrics/EventBusMetrics;
            aload 0 /* this */
            aload 1 /* address */
            aconst_null
            iconst_0
            aconst_null
            ldc -1
            invokespecial io.vertx.core.eventbus.impl.HandlerRegistration.<init>:(Lio/vertx/core/Vertx;Lio/vertx/core/spi/metrics/EventBusMetrics;Lio/vertx/core/eventbus/impl/EventBusImpl;Ljava/lang/String;Ljava/lang/String;ZLio/vertx/core/Handler;J)V
            areturn
        end local 1 // java.lang.String address
        end local 0 // io.vertx.core.eventbus.impl.EventBusImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0     this  Lio/vertx/core/eventbus/impl/EventBusImpl;
            0    3     1  address  Ljava/lang/String;
    Signature: <T:Ljava/lang/Object;>(Ljava/lang/String;)Lio/vertx/core/eventbus/MessageConsumer<TT;>;
    MethodParameters:
         Name  Flags
      address  

  public <T> io.vertx.core.eventbus.MessageConsumer<T> consumer(java.lang.String, io.vertx.core.Handler<io.vertx.core.eventbus.Message<T>>);
    descriptor: (Ljava/lang/String;Lio/vertx/core/Handler;)Lio/vertx/core/eventbus/MessageConsumer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=3
        start local 0 // io.vertx.core.eventbus.impl.EventBusImpl this
        start local 1 // java.lang.String address
        start local 2 // io.vertx.core.Handler handler
         0: .line 161
            aload 2 /* handler */
            ldc "handler"
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            pop
         1: .line 162
            aload 0 /* this */
            aload 1 /* address */
            invokevirtual io.vertx.core.eventbus.impl.EventBusImpl.consumer:(Ljava/lang/String;)Lio/vertx/core/eventbus/MessageConsumer;
            astore 3 /* consumer */
        start local 3 // io.vertx.core.eventbus.MessageConsumer consumer
         2: .line 163
            aload 3 /* consumer */
            aload 2 /* handler */
            invokeinterface io.vertx.core.eventbus.MessageConsumer.handler:(Lio/vertx/core/Handler;)Lio/vertx/core/eventbus/MessageConsumer;
            pop
         3: .line 164
            aload 3 /* consumer */
            areturn
        end local 3 // io.vertx.core.eventbus.MessageConsumer consumer
        end local 2 // io.vertx.core.Handler handler
        end local 1 // java.lang.String address
        end local 0 // io.vertx.core.eventbus.impl.EventBusImpl this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    4     0      this  Lio/vertx/core/eventbus/impl/EventBusImpl;
            0    4     1   address  Ljava/lang/String;
            0    4     2   handler  Lio/vertx/core/Handler<Lio/vertx/core/eventbus/Message<TT;>;>;
            2    4     3  consumer  Lio/vertx/core/eventbus/MessageConsumer<TT;>;
    Signature: <T:Ljava/lang/Object;>(Ljava/lang/String;Lio/vertx/core/Handler<Lio/vertx/core/eventbus/Message<TT;>;>;)Lio/vertx/core/eventbus/MessageConsumer<TT;>;
    MethodParameters:
         Name  Flags
      address  
      handler  

  public <T> io.vertx.core.eventbus.MessageConsumer<T> localConsumer(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/core/eventbus/MessageConsumer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=11, locals=2, args_size=2
        start local 0 // io.vertx.core.eventbus.impl.EventBusImpl this
        start local 1 // java.lang.String address
         0: .line 169
            aload 0 /* this */
            invokevirtual io.vertx.core.eventbus.impl.EventBusImpl.checkStarted:()V
         1: .line 170
            aload 1 /* address */
            ldc "address"
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            pop
         2: .line 171
            new io.vertx.core.eventbus.impl.HandlerRegistration
            dup
            aload 0 /* this */
            getfield io.vertx.core.eventbus.impl.EventBusImpl.vertx:Lio/vertx/core/impl/VertxInternal;
            aload 0 /* this */
            getfield io.vertx.core.eventbus.impl.EventBusImpl.metrics:Lio/vertx/core/spi/metrics/EventBusMetrics;
            aload 0 /* this */
            aload 1 /* address */
            aconst_null
            iconst_1
            aconst_null
            ldc -1
            invokespecial io.vertx.core.eventbus.impl.HandlerRegistration.<init>:(Lio/vertx/core/Vertx;Lio/vertx/core/spi/metrics/EventBusMetrics;Lio/vertx/core/eventbus/impl/EventBusImpl;Ljava/lang/String;Ljava/lang/String;ZLio/vertx/core/Handler;J)V
            areturn
        end local 1 // java.lang.String address
        end local 0 // io.vertx.core.eventbus.impl.EventBusImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0     this  Lio/vertx/core/eventbus/impl/EventBusImpl;
            0    3     1  address  Ljava/lang/String;
    Signature: <T:Ljava/lang/Object;>(Ljava/lang/String;)Lio/vertx/core/eventbus/MessageConsumer<TT;>;
    MethodParameters:
         Name  Flags
      address  

  public <T> io.vertx.core.eventbus.MessageConsumer<T> localConsumer(java.lang.String, io.vertx.core.Handler<io.vertx.core.eventbus.Message<T>>);
    descriptor: (Ljava/lang/String;Lio/vertx/core/Handler;)Lio/vertx/core/eventbus/MessageConsumer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=3
        start local 0 // io.vertx.core.eventbus.impl.EventBusImpl this
        start local 1 // java.lang.String address
        start local 2 // io.vertx.core.Handler handler
         0: .line 176
            aload 2 /* handler */
            ldc "handler"
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            pop
         1: .line 177
            aload 0 /* this */
            aload 1 /* address */
            invokevirtual io.vertx.core.eventbus.impl.EventBusImpl.localConsumer:(Ljava/lang/String;)Lio/vertx/core/eventbus/MessageConsumer;
            astore 3 /* consumer */
        start local 3 // io.vertx.core.eventbus.MessageConsumer consumer
         2: .line 178
            aload 3 /* consumer */
            aload 2 /* handler */
            invokeinterface io.vertx.core.eventbus.MessageConsumer.handler:(Lio/vertx/core/Handler;)Lio/vertx/core/eventbus/MessageConsumer;
            pop
         3: .line 179
            aload 3 /* consumer */
            areturn
        end local 3 // io.vertx.core.eventbus.MessageConsumer consumer
        end local 2 // io.vertx.core.Handler handler
        end local 1 // java.lang.String address
        end local 0 // io.vertx.core.eventbus.impl.EventBusImpl this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    4     0      this  Lio/vertx/core/eventbus/impl/EventBusImpl;
            0    4     1   address  Ljava/lang/String;
            0    4     2   handler  Lio/vertx/core/Handler<Lio/vertx/core/eventbus/Message<TT;>;>;
            2    4     3  consumer  Lio/vertx/core/eventbus/MessageConsumer<TT;>;
    Signature: <T:Ljava/lang/Object;>(Ljava/lang/String;Lio/vertx/core/Handler<Lio/vertx/core/eventbus/Message<TT;>;>;)Lio/vertx/core/eventbus/MessageConsumer<TT;>;
    MethodParameters:
         Name  Flags
      address  
      handler  

  public io.vertx.core.eventbus.EventBus registerCodec(io.vertx.core.eventbus.MessageCodec);
    descriptor: (Lio/vertx/core/eventbus/MessageCodec;)Lio/vertx/core/eventbus/EventBus;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.eventbus.impl.EventBusImpl this
        start local 1 // io.vertx.core.eventbus.MessageCodec codec
         0: .line 184
            aload 0 /* this */
            getfield io.vertx.core.eventbus.impl.EventBusImpl.codecManager:Lio/vertx/core/eventbus/impl/CodecManager;
            aload 1 /* codec */
            invokevirtual io.vertx.core.eventbus.impl.CodecManager.registerCodec:(Lio/vertx/core/eventbus/MessageCodec;)V
         1: .line 185
            aload 0 /* this */
            areturn
        end local 1 // io.vertx.core.eventbus.MessageCodec codec
        end local 0 // io.vertx.core.eventbus.impl.EventBusImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/vertx/core/eventbus/impl/EventBusImpl;
            0    2     1  codec  Lio/vertx/core/eventbus/MessageCodec;
    MethodParameters:
       Name  Flags
      codec  

  public io.vertx.core.eventbus.EventBus unregisterCodec(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/core/eventbus/EventBus;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.eventbus.impl.EventBusImpl this
        start local 1 // java.lang.String name
         0: .line 190
            aload 0 /* this */
            getfield io.vertx.core.eventbus.impl.EventBusImpl.codecManager:Lio/vertx/core/eventbus/impl/CodecManager;
            aload 1 /* name */
            invokevirtual io.vertx.core.eventbus.impl.CodecManager.unregisterCodec:(Ljava/lang/String;)V
         1: .line 191
            aload 0 /* this */
            areturn
        end local 1 // java.lang.String name
        end local 0 // io.vertx.core.eventbus.impl.EventBusImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/core/eventbus/impl/EventBusImpl;
            0    2     1  name  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      name  

  public <T> io.vertx.core.eventbus.EventBus registerDefaultCodec(java.lang.Class<T>, io.vertx.core.eventbus.MessageCodec<T, ?>);
    descriptor: (Ljava/lang/Class;Lio/vertx/core/eventbus/MessageCodec;)Lio/vertx/core/eventbus/EventBus;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.vertx.core.eventbus.impl.EventBusImpl this
        start local 1 // java.lang.Class clazz
        start local 2 // io.vertx.core.eventbus.MessageCodec codec
         0: .line 196
            aload 0 /* this */
            getfield io.vertx.core.eventbus.impl.EventBusImpl.codecManager:Lio/vertx/core/eventbus/impl/CodecManager;
            aload 1 /* clazz */
            aload 2 /* codec */
            invokevirtual io.vertx.core.eventbus.impl.CodecManager.registerDefaultCodec:(Ljava/lang/Class;Lio/vertx/core/eventbus/MessageCodec;)V
         1: .line 197
            aload 0 /* this */
            areturn
        end local 2 // io.vertx.core.eventbus.MessageCodec codec
        end local 1 // java.lang.Class clazz
        end local 0 // io.vertx.core.eventbus.impl.EventBusImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/vertx/core/eventbus/impl/EventBusImpl;
            0    2     1  clazz  Ljava/lang/Class<TT;>;
            0    2     2  codec  Lio/vertx/core/eventbus/MessageCodec<TT;*>;
    Signature: <T:Ljava/lang/Object;>(Ljava/lang/Class<TT;>;Lio/vertx/core/eventbus/MessageCodec<TT;*>;)Lio/vertx/core/eventbus/EventBus;
    MethodParameters:
       Name  Flags
      clazz  
      codec  

  public io.vertx.core.eventbus.EventBus unregisterDefaultCodec(java.lang.Class);
    descriptor: (Ljava/lang/Class;)Lio/vertx/core/eventbus/EventBus;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.eventbus.impl.EventBusImpl this
        start local 1 // java.lang.Class clazz
         0: .line 202
            aload 0 /* this */
            getfield io.vertx.core.eventbus.impl.EventBusImpl.codecManager:Lio/vertx/core/eventbus/impl/CodecManager;
            aload 1 /* clazz */
            invokevirtual io.vertx.core.eventbus.impl.CodecManager.unregisterDefaultCodec:(Ljava/lang/Class;)V
         1: .line 203
            aload 0 /* this */
            areturn
        end local 1 // java.lang.Class clazz
        end local 0 // io.vertx.core.eventbus.impl.EventBusImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/vertx/core/eventbus/impl/EventBusImpl;
            0    2     1  clazz  Ljava/lang/Class;
    MethodParameters:
       Name  Flags
      clazz  

  public void close(io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>);
    descriptor: (Lio/vertx/core/Handler;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.eventbus.impl.EventBusImpl this
        start local 1 // io.vertx.core.Handler completionHandler
         0: .line 208
            aload 0 /* this */
            invokevirtual io.vertx.core.eventbus.impl.EventBusImpl.checkStarted:()V
         1: .line 209
            aload 0 /* this */
            invokevirtual io.vertx.core.eventbus.impl.EventBusImpl.unregisterAll:()V
         2: .line 210
            aload 0 /* this */
            getfield io.vertx.core.eventbus.impl.EventBusImpl.metrics:Lio/vertx/core/spi/metrics/EventBusMetrics;
            ifnull 4
         3: .line 211
            aload 0 /* this */
            getfield io.vertx.core.eventbus.impl.EventBusImpl.metrics:Lio/vertx/core/spi/metrics/EventBusMetrics;
            invokeinterface io.vertx.core.spi.metrics.EventBusMetrics.close:()V
         4: .line 213
      StackMap locals:
      StackMap stack:
            aload 1 /* completionHandler */
            ifnull 6
         5: .line 214
            aload 0 /* this */
            getfield io.vertx.core.eventbus.impl.EventBusImpl.vertx:Lio/vertx/core/impl/VertxInternal;
            aload 1 /* completionHandler */
            invokedynamic handle(Lio/vertx/core/Handler;)Lio/vertx/core/Handler;
              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/impl/EventBusImpl.lambda$0(Lio/vertx/core/Handler;Ljava/lang/Void;)V (6)
                  (Ljava/lang/Void;)V
            invokeinterface io.vertx.core.impl.VertxInternal.runOnContext:(Lio/vertx/core/Handler;)V
         6: .line 216
      StackMap locals:
      StackMap stack:
            return
        end local 1 // io.vertx.core.Handler completionHandler
        end local 0 // io.vertx.core.eventbus.impl.EventBusImpl this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0    7     0               this  Lio/vertx/core/eventbus/impl/EventBusImpl;
            0    7     1  completionHandler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;
    Signature: (Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;)V
    MethodParameters:
                   Name  Flags
      completionHandler  

  public boolean isMetricsEnabled();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.eventbus.impl.EventBusImpl this
         0: .line 220
            aload 0 /* this */
            getfield io.vertx.core.eventbus.impl.EventBusImpl.metrics:Lio/vertx/core/spi/metrics/EventBusMetrics;
            ifnull 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // io.vertx.core.eventbus.impl.EventBusImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/core/eventbus/impl/EventBusImpl;

  public io.vertx.core.spi.metrics.EventBusMetrics<?> getMetrics();
    descriptor: ()Lio/vertx/core/spi/metrics/EventBusMetrics;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.eventbus.impl.EventBusImpl this
         0: .line 225
            aload 0 /* this */
            getfield io.vertx.core.eventbus.impl.EventBusImpl.metrics:Lio/vertx/core/spi/metrics/EventBusMetrics;
            areturn
        end local 0 // io.vertx.core.eventbus.impl.EventBusImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/eventbus/impl/EventBusImpl;
    Signature: ()Lio/vertx/core/spi/metrics/EventBusMetrics<*>;

  public io.vertx.core.eventbus.impl.MessageImpl createMessage(boolean, java.lang.String, io.vertx.core.MultiMap, , java.lang.String, io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>);
    descriptor: (ZLjava/lang/String;Lio/vertx/core/MultiMap;Ljava/lang/Object;Ljava/lang/String;Lio/vertx/core/Handler;)Lio/vertx/core/eventbus/impl/MessageImpl;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=10, locals=9, args_size=7
        start local 0 // io.vertx.core.eventbus.impl.EventBusImpl this
        start local 1 // boolean send
        start local 2 // java.lang.String address
        start local 3 // io.vertx.core.MultiMap headers
        start local 4 // java.lang.Object body
        start local 5 // java.lang.String codecName
        start local 6 // io.vertx.core.Handler writeHandler
         0: .line 229
            aload 2 /* address */
            ldc "no null address accepted"
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            pop
         1: .line 230
            aload 0 /* this */
            getfield io.vertx.core.eventbus.impl.EventBusImpl.codecManager:Lio/vertx/core/eventbus/impl/CodecManager;
            aload 4 /* body */
            aload 5 /* codecName */
            invokevirtual io.vertx.core.eventbus.impl.CodecManager.lookupCodec:(Ljava/lang/Object;Ljava/lang/String;)Lio/vertx/core/eventbus/MessageCodec;
            astore 7 /* codec */
        start local 7 // io.vertx.core.eventbus.MessageCodec codec
         2: .line 232
            new io.vertx.core.eventbus.impl.MessageImpl
            dup
            aload 2 /* address */
            aconst_null
            aload 3 /* headers */
            aload 4 /* body */
            aload 7 /* codec */
            iload 1 /* send */
            aload 0 /* this */
            aload 6 /* writeHandler */
            invokespecial io.vertx.core.eventbus.impl.MessageImpl.<init>:(Ljava/lang/String;Ljava/lang/String;Lio/vertx/core/MultiMap;Ljava/lang/Object;Lio/vertx/core/eventbus/MessageCodec;ZLio/vertx/core/eventbus/impl/EventBusImpl;Lio/vertx/core/Handler;)V
            astore 8 /* msg */
        start local 8 // io.vertx.core.eventbus.impl.MessageImpl msg
         3: .line 233
            aload 8 /* msg */
            areturn
        end local 8 // io.vertx.core.eventbus.impl.MessageImpl msg
        end local 7 // io.vertx.core.eventbus.MessageCodec codec
        end local 6 // io.vertx.core.Handler writeHandler
        end local 5 // java.lang.String codecName
        end local 4 // java.lang.Object body
        end local 3 // io.vertx.core.MultiMap headers
        end local 2 // java.lang.String address
        end local 1 // boolean send
        end local 0 // io.vertx.core.eventbus.impl.EventBusImpl this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    4     0          this  Lio/vertx/core/eventbus/impl/EventBusImpl;
            0    4     1          send  Z
            0    4     2       address  Ljava/lang/String;
            0    4     3       headers  Lio/vertx/core/MultiMap;
            0    4     4          body  Ljava/lang/Object;
            0    4     5     codecName  Ljava/lang/String;
            0    4     6  writeHandler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;
            2    4     7         codec  Lio/vertx/core/eventbus/MessageCodec;
            3    4     8           msg  Lio/vertx/core/eventbus/impl/MessageImpl;
    Signature: (ZLjava/lang/String;Lio/vertx/core/MultiMap;Ljava/lang/Object;Ljava/lang/String;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;)Lio/vertx/core/eventbus/impl/MessageImpl;
    MethodParameters:
              Name  Flags
      send          
      address       
      headers       
      body          
      codecName     
      writeHandler  

  protected <T> io.vertx.core.eventbus.impl.HandlerHolder<T> addRegistration(java.lang.String, io.vertx.core.eventbus.impl.HandlerRegistration<T>, boolean, boolean);
    descriptor: (Ljava/lang/String;Lio/vertx/core/eventbus/impl/HandlerRegistration;ZZ)Lio/vertx/core/eventbus/impl/HandlerHolder;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=7, locals=6, args_size=5
        start local 0 // io.vertx.core.eventbus.impl.EventBusImpl this
        start local 1 // java.lang.String address
        start local 2 // io.vertx.core.eventbus.impl.HandlerRegistration registration
        start local 3 // boolean replyHandler
        start local 4 // boolean localOnly
         0: .line 238
            aload 2 /* registration */
            invokevirtual io.vertx.core.eventbus.impl.HandlerRegistration.getHandler:()Lio/vertx/core/Handler;
            ldc "handler"
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            pop
         1: .line 239
            aload 0 /* this */
            aload 1 /* address */
            aload 2 /* registration */
            iload 3 /* replyHandler */
            iload 4 /* localOnly */
            invokevirtual io.vertx.core.eventbus.impl.EventBusImpl.addLocalRegistration:(Ljava/lang/String;Lio/vertx/core/eventbus/impl/HandlerRegistration;ZZ)Lio/vertx/core/eventbus/impl/EventBusImpl$LocalRegistrationResult;
            astore 5 /* result */
        start local 5 // io.vertx.core.eventbus.impl.EventBusImpl$LocalRegistrationResult result
         2: .line 240
            aload 0 /* this */
            aload 5 /* result */
            getfield io.vertx.core.eventbus.impl.EventBusImpl$LocalRegistrationResult.newAddress:Z
            aload 1 /* address */
            iload 3 /* replyHandler */
            iload 4 /* localOnly */
            aload 2 /* registration */
            dup
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            pop
            invokedynamic handle(Lio/vertx/core/eventbus/impl/HandlerRegistration;)Lio/vertx/core/Handler;
              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/impl/HandlerRegistration.setResult(Lio/vertx/core/AsyncResult;)V (5)
                  (Lio/vertx/core/AsyncResult;)V
            invokevirtual io.vertx.core.eventbus.impl.EventBusImpl.addRegistration:(ZLjava/lang/String;ZZLio/vertx/core/Handler;)V
         3: .line 241
            aload 5 /* result */
            getfield io.vertx.core.eventbus.impl.EventBusImpl$LocalRegistrationResult.holder:Lio/vertx/core/eventbus/impl/HandlerHolder;
            areturn
        end local 5 // io.vertx.core.eventbus.impl.EventBusImpl$LocalRegistrationResult result
        end local 4 // boolean localOnly
        end local 3 // boolean replyHandler
        end local 2 // io.vertx.core.eventbus.impl.HandlerRegistration registration
        end local 1 // java.lang.String address
        end local 0 // io.vertx.core.eventbus.impl.EventBusImpl this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    4     0          this  Lio/vertx/core/eventbus/impl/EventBusImpl;
            0    4     1       address  Ljava/lang/String;
            0    4     2  registration  Lio/vertx/core/eventbus/impl/HandlerRegistration<TT;>;
            0    4     3  replyHandler  Z
            0    4     4     localOnly  Z
            2    4     5        result  Lio/vertx/core/eventbus/impl/EventBusImpl$LocalRegistrationResult<TT;>;
    Signature: <T:Ljava/lang/Object;>(Ljava/lang/String;Lio/vertx/core/eventbus/impl/HandlerRegistration<TT;>;ZZ)Lio/vertx/core/eventbus/impl/HandlerHolder<TT;>;
    MethodParameters:
              Name  Flags
      address       
      registration  
      replyHandler  
      localOnly     

  protected <T> void addRegistration(boolean, java.lang.String, boolean, boolean, io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>);
    descriptor: (ZLjava/lang/String;ZZLio/vertx/core/Handler;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=6, args_size=6
        start local 0 // io.vertx.core.eventbus.impl.EventBusImpl this
        start local 1 // boolean newAddress
        start local 2 // java.lang.String address
        start local 3 // boolean replyHandler
        start local 4 // boolean localOnly
        start local 5 // io.vertx.core.Handler completionHandler
         0: .line 247
            aload 5 /* completionHandler */
            invokestatic io.vertx.core.Future.succeededFuture:()Lio/vertx/core/Future;
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
         1: .line 248
            return
        end local 5 // io.vertx.core.Handler completionHandler
        end local 4 // boolean localOnly
        end local 3 // boolean replyHandler
        end local 2 // java.lang.String address
        end local 1 // boolean newAddress
        end local 0 // io.vertx.core.eventbus.impl.EventBusImpl this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0    2     0               this  Lio/vertx/core/eventbus/impl/EventBusImpl;
            0    2     1         newAddress  Z
            0    2     2            address  Ljava/lang/String;
            0    2     3       replyHandler  Z
            0    2     4          localOnly  Z
            0    2     5  completionHandler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;
    Signature: <T:Ljava/lang/Object;>(ZLjava/lang/String;ZZLio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;)V
    MethodParameters:
                   Name  Flags
      newAddress         
      address            
      replyHandler       
      localOnly          
      completionHandler  

  private <T> io.vertx.core.eventbus.impl.EventBusImpl$LocalRegistrationResult<T> addLocalRegistration(java.lang.String, io.vertx.core.eventbus.impl.HandlerRegistration<T>, boolean, boolean);
    descriptor: (Ljava/lang/String;Lio/vertx/core/eventbus/impl/HandlerRegistration;ZZ)Lio/vertx/core/eventbus/impl/EventBusImpl$LocalRegistrationResult;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=6, locals=11, args_size=5
        start local 0 // io.vertx.core.eventbus.impl.EventBusImpl this
        start local 1 // java.lang.String address
        start local 2 // io.vertx.core.eventbus.impl.HandlerRegistration registration
        start local 3 // boolean replyHandler
        start local 4 // boolean localOnly
         0: .line 261
            aload 1 /* address */
            ldc "address"
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            pop
         1: .line 263
            invokestatic io.vertx.core.Vertx.currentContext:()Lio/vertx/core/Context;
            astore 5 /* context */
        start local 5 // io.vertx.core.Context context
         2: .line 264
            aload 5 /* context */
            ifnull 3
            iconst_1
            goto 4
      StackMap locals: io.vertx.core.Context
      StackMap stack:
         3: iconst_0
      StackMap locals:
      StackMap stack: int
         4: istore 6 /* hasContext */
        start local 6 // boolean hasContext
         5: .line 265
            iload 6 /* hasContext */
            ifne 7
         6: .line 267
            aload 0 /* this */
            getfield io.vertx.core.eventbus.impl.EventBusImpl.vertx:Lio/vertx/core/impl/VertxInternal;
            invokeinterface io.vertx.core.impl.VertxInternal.getOrCreateContext:()Lio/vertx/core/impl/ContextInternal;
            astore 5 /* context */
         7: .line 269
      StackMap locals: int
      StackMap stack:
            aload 2 /* registration */
            aload 5 /* context */
            invokevirtual io.vertx.core.eventbus.impl.HandlerRegistration.setHandlerContext:(Lio/vertx/core/Context;)V
         8: .line 271
            new io.vertx.core.eventbus.impl.HandlerHolder
            dup
            aload 2 /* registration */
            iload 3 /* replyHandler */
            iload 4 /* localOnly */
            aload 5 /* context */
            invokespecial io.vertx.core.eventbus.impl.HandlerHolder.<init>:(Lio/vertx/core/eventbus/impl/HandlerRegistration;ZZLio/vertx/core/Context;)V
            astore 7 /* holder */
        start local 7 // io.vertx.core.eventbus.impl.HandlerHolder holder
         9: .line 273
            new io.vertx.core.impl.utils.ConcurrentCyclicSequence
            dup
            invokespecial io.vertx.core.impl.utils.ConcurrentCyclicSequence.<init>:()V
            aload 7 /* holder */
            invokevirtual io.vertx.core.impl.utils.ConcurrentCyclicSequence.add:(Ljava/lang/Object;)Lio/vertx/core/impl/utils/ConcurrentCyclicSequence;
            astore 8 /* handlers */
        start local 8 // io.vertx.core.impl.utils.ConcurrentCyclicSequence handlers
        10: .line 274
            aload 0 /* this */
            getfield io.vertx.core.eventbus.impl.EventBusImpl.handlerMap:Ljava/util/concurrent/ConcurrentMap;
        11: .line 275
            aload 1 /* address */
        12: .line 276
            aload 8 /* handlers */
        13: .line 277
            invokedynamic apply()Ljava/util/function/BiFunction;
              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;Ljava/lang/Object;)Ljava/lang/Object;
                  io/vertx/core/eventbus/impl/EventBusImpl.lambda$2(Lio/vertx/core/impl/utils/ConcurrentCyclicSequence;Lio/vertx/core/impl/utils/ConcurrentCyclicSequence;)Lio/vertx/core/impl/utils/ConcurrentCyclicSequence; (6)
                  (Lio/vertx/core/impl/utils/ConcurrentCyclicSequence;Lio/vertx/core/impl/utils/ConcurrentCyclicSequence;)Lio/vertx/core/impl/utils/ConcurrentCyclicSequence;
        14: .line 274
            invokeinterface java.util.concurrent.ConcurrentMap.merge:(Ljava/lang/Object;Ljava/lang/Object;Ljava/util/function/BiFunction;)Ljava/lang/Object;
            checkcast io.vertx.core.impl.utils.ConcurrentCyclicSequence
            astore 9 /* actualHandlers */
        start local 9 // io.vertx.core.impl.utils.ConcurrentCyclicSequence actualHandlers
        15: .line 279
            iload 6 /* hasContext */
            ifeq 18
        16: .line 280
            new io.vertx.core.eventbus.impl.EventBusImpl$HandlerEntry
            dup
            aload 0 /* this */
            aload 1 /* address */
            aload 2 /* registration */
            invokespecial io.vertx.core.eventbus.impl.EventBusImpl$HandlerEntry.<init>:(Lio/vertx/core/eventbus/impl/EventBusImpl;Ljava/lang/String;Lio/vertx/core/eventbus/impl/HandlerRegistration;)V
            astore 10 /* entry */
        start local 10 // io.vertx.core.eventbus.impl.EventBusImpl$HandlerEntry entry
        17: .line 281
            aload 5 /* context */
            aload 10 /* entry */
            invokeinterface io.vertx.core.Context.addCloseHook:(Lio/vertx/core/Closeable;)V
        end local 10 // io.vertx.core.eventbus.impl.EventBusImpl$HandlerEntry entry
        18: .line 284
      StackMap locals: io.vertx.core.eventbus.impl.HandlerHolder io.vertx.core.impl.utils.ConcurrentCyclicSequence io.vertx.core.impl.utils.ConcurrentCyclicSequence
      StackMap stack:
            aload 8 /* handlers */
            aload 9 /* actualHandlers */
            if_acmpne 19
            iconst_1
            goto 20
      StackMap locals:
      StackMap stack:
        19: iconst_0
      StackMap locals:
      StackMap stack: int
        20: istore 10 /* newAddress */
        start local 10 // boolean newAddress
        21: .line 285
            new io.vertx.core.eventbus.impl.EventBusImpl$LocalRegistrationResult
            dup
            aload 7 /* holder */
            iload 10 /* newAddress */
            invokespecial io.vertx.core.eventbus.impl.EventBusImpl$LocalRegistrationResult.<init>:(Lio/vertx/core/eventbus/impl/HandlerHolder;Z)V
            areturn
        end local 10 // boolean newAddress
        end local 9 // io.vertx.core.impl.utils.ConcurrentCyclicSequence actualHandlers
        end local 8 // io.vertx.core.impl.utils.ConcurrentCyclicSequence handlers
        end local 7 // io.vertx.core.eventbus.impl.HandlerHolder holder
        end local 6 // boolean hasContext
        end local 5 // io.vertx.core.Context context
        end local 4 // boolean localOnly
        end local 3 // boolean replyHandler
        end local 2 // io.vertx.core.eventbus.impl.HandlerRegistration registration
        end local 1 // java.lang.String address
        end local 0 // io.vertx.core.eventbus.impl.EventBusImpl this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0   22     0            this  Lio/vertx/core/eventbus/impl/EventBusImpl;
            0   22     1         address  Ljava/lang/String;
            0   22     2    registration  Lio/vertx/core/eventbus/impl/HandlerRegistration<TT;>;
            0   22     3    replyHandler  Z
            0   22     4       localOnly  Z
            2   22     5         context  Lio/vertx/core/Context;
            5   22     6      hasContext  Z
            9   22     7          holder  Lio/vertx/core/eventbus/impl/HandlerHolder<TT;>;
           10   22     8        handlers  Lio/vertx/core/impl/utils/ConcurrentCyclicSequence<Lio/vertx/core/eventbus/impl/HandlerHolder;>;
           15   22     9  actualHandlers  Lio/vertx/core/impl/utils/ConcurrentCyclicSequence<Lio/vertx/core/eventbus/impl/HandlerHolder;>;
           17   18    10           entry  Lio/vertx/core/eventbus/impl/EventBusImpl$HandlerEntry;
           21   22    10      newAddress  Z
    Signature: <T:Ljava/lang/Object;>(Ljava/lang/String;Lio/vertx/core/eventbus/impl/HandlerRegistration<TT;>;ZZ)Lio/vertx/core/eventbus/impl/EventBusImpl$LocalRegistrationResult<TT;>;
    MethodParameters:
              Name  Flags
      address       
      registration  
      replyHandler  
      localOnly     

  protected <T> void removeRegistration(io.vertx.core.eventbus.impl.HandlerHolder<T>, io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>);
    descriptor: (Lio/vertx/core/eventbus/impl/HandlerHolder;Lio/vertx/core/Handler;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // io.vertx.core.eventbus.impl.EventBusImpl this
        start local 1 // io.vertx.core.eventbus.impl.HandlerHolder holder
        start local 2 // io.vertx.core.Handler completionHandler
         0: .line 289
            aload 0 /* this */
            aload 1 /* holder */
            invokevirtual io.vertx.core.eventbus.impl.EventBusImpl.removeLocalRegistration:(Lio/vertx/core/eventbus/impl/HandlerHolder;)Z
            istore 3 /* last */
        start local 3 // boolean last
         1: .line 290
            aload 0 /* this */
            iload 3 /* last */
            ifeq 2
            aload 1 /* holder */
            goto 3
      StackMap locals: io.vertx.core.eventbus.impl.EventBusImpl io.vertx.core.eventbus.impl.HandlerHolder io.vertx.core.Handler int
      StackMap stack: io.vertx.core.eventbus.impl.EventBusImpl
         2: aconst_null
      StackMap locals: io.vertx.core.eventbus.impl.EventBusImpl io.vertx.core.eventbus.impl.HandlerHolder io.vertx.core.Handler int
      StackMap stack: io.vertx.core.eventbus.impl.EventBusImpl io.vertx.core.eventbus.impl.HandlerHolder
         3: aload 1 /* holder */
            invokevirtual io.vertx.core.eventbus.impl.HandlerHolder.getHandler:()Lio/vertx/core/eventbus/impl/HandlerRegistration;
            invokevirtual io.vertx.core.eventbus.impl.HandlerRegistration.address:()Ljava/lang/String;
            aload 2 /* completionHandler */
            invokevirtual io.vertx.core.eventbus.impl.EventBusImpl.removeRegistration:(Lio/vertx/core/eventbus/impl/HandlerHolder;Ljava/lang/String;Lio/vertx/core/Handler;)V
         4: .line 291
            return
        end local 3 // boolean last
        end local 2 // io.vertx.core.Handler completionHandler
        end local 1 // io.vertx.core.eventbus.impl.HandlerHolder holder
        end local 0 // io.vertx.core.eventbus.impl.EventBusImpl this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0    5     0               this  Lio/vertx/core/eventbus/impl/EventBusImpl;
            0    5     1             holder  Lio/vertx/core/eventbus/impl/HandlerHolder<TT;>;
            0    5     2  completionHandler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;
            1    5     3               last  Z
    Signature: <T:Ljava/lang/Object;>(Lio/vertx/core/eventbus/impl/HandlerHolder<TT;>;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;)V
    MethodParameters:
                   Name  Flags
      holder             
      completionHandler  

  protected <T> void removeRegistration(io.vertx.core.eventbus.impl.HandlerHolder<T>, java.lang.String, io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>);
    descriptor: (Lio/vertx/core/eventbus/impl/HandlerHolder;Ljava/lang/String;Lio/vertx/core/Handler;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=4, args_size=4
        start local 0 // io.vertx.core.eventbus.impl.EventBusImpl this
        start local 1 // io.vertx.core.eventbus.impl.HandlerHolder handlerHolder
        start local 2 // java.lang.String address
        start local 3 // io.vertx.core.Handler completionHandler
         0: .line 295
            aload 0 /* this */
            aload 3 /* completionHandler */
            invokevirtual io.vertx.core.eventbus.impl.EventBusImpl.callCompletionHandlerAsync:(Lio/vertx/core/Handler;)V
         1: .line 296
            return
        end local 3 // io.vertx.core.Handler completionHandler
        end local 2 // java.lang.String address
        end local 1 // io.vertx.core.eventbus.impl.HandlerHolder handlerHolder
        end local 0 // io.vertx.core.eventbus.impl.EventBusImpl this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0    2     0               this  Lio/vertx/core/eventbus/impl/EventBusImpl;
            0    2     1      handlerHolder  Lio/vertx/core/eventbus/impl/HandlerHolder<TT;>;
            0    2     2            address  Ljava/lang/String;
            0    2     3  completionHandler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;
    Signature: <T:Ljava/lang/Object;>(Lio/vertx/core/eventbus/impl/HandlerHolder<TT;>;Ljava/lang/String;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;)V
    MethodParameters:
                   Name  Flags
      handlerHolder      
      address            
      completionHandler  

  private <T> boolean removeLocalRegistration(io.vertx.core.eventbus.impl.HandlerHolder<T>);
    descriptor: (Lio/vertx/core/eventbus/impl/HandlerHolder;)Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=6, locals=4, args_size=2
        start local 0 // io.vertx.core.eventbus.impl.EventBusImpl this
        start local 1 // io.vertx.core.eventbus.impl.HandlerHolder holder
         0: .line 299
            aload 1 /* holder */
            invokevirtual io.vertx.core.eventbus.impl.HandlerHolder.getHandler:()Lio/vertx/core/eventbus/impl/HandlerRegistration;
            invokevirtual io.vertx.core.eventbus.impl.HandlerRegistration.address:()Ljava/lang/String;
            astore 2 /* address */
        start local 2 // java.lang.String address
         1: .line 300
            aload 0 /* this */
            getfield io.vertx.core.eventbus.impl.EventBusImpl.handlerMap:Ljava/util/concurrent/ConcurrentMap;
            aload 2 /* address */
            aload 1 /* holder */
            invokedynamic apply(Lio/vertx/core/eventbus/impl/HandlerHolder;)Ljava/util/function/BiFunction;
              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;Ljava/lang/Object;)Ljava/lang/Object;
                  io/vertx/core/eventbus/impl/EventBusImpl.lambda$3(Lio/vertx/core/eventbus/impl/HandlerHolder;Ljava/lang/String;Lio/vertx/core/impl/utils/ConcurrentCyclicSequence;)Lio/vertx/core/impl/utils/ConcurrentCyclicSequence; (6)
                  (Ljava/lang/String;Lio/vertx/core/impl/utils/ConcurrentCyclicSequence;)Lio/vertx/core/impl/utils/ConcurrentCyclicSequence;
            invokeinterface java.util.concurrent.ConcurrentMap.compute:(Ljava/lang/Object;Ljava/util/function/BiFunction;)Ljava/lang/Object;
            ifnonnull 2
            iconst_1
            goto 3
      StackMap locals: java.lang.String
      StackMap stack:
         2: iconst_0
      StackMap locals:
      StackMap stack: int
         3: istore 3 /* last */
        start local 3 // boolean last
         4: .line 307
            aload 1 /* holder */
            invokevirtual io.vertx.core.eventbus.impl.HandlerHolder.setRemoved:()Z
            ifeq 6
         5: .line 308
            aload 1 /* holder */
            invokevirtual io.vertx.core.eventbus.impl.HandlerHolder.getContext:()Lio/vertx/core/Context;
            new io.vertx.core.eventbus.impl.EventBusImpl$HandlerEntry
            dup
            aload 0 /* this */
            aload 2 /* address */
            aload 1 /* holder */
            invokevirtual io.vertx.core.eventbus.impl.HandlerHolder.getHandler:()Lio/vertx/core/eventbus/impl/HandlerRegistration;
            invokespecial io.vertx.core.eventbus.impl.EventBusImpl$HandlerEntry.<init>:(Lio/vertx/core/eventbus/impl/EventBusImpl;Ljava/lang/String;Lio/vertx/core/eventbus/impl/HandlerRegistration;)V
            invokeinterface io.vertx.core.Context.removeCloseHook:(Lio/vertx/core/Closeable;)Z
            pop
         6: .line 310
      StackMap locals: int
      StackMap stack:
            iload 3 /* last */
            ireturn
        end local 3 // boolean last
        end local 2 // java.lang.String address
        end local 1 // io.vertx.core.eventbus.impl.HandlerHolder holder
        end local 0 // io.vertx.core.eventbus.impl.EventBusImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    7     0     this  Lio/vertx/core/eventbus/impl/EventBusImpl;
            0    7     1   holder  Lio/vertx/core/eventbus/impl/HandlerHolder<TT;>;
            1    7     2  address  Ljava/lang/String;
            4    7     3     last  Z
    Signature: <T:Ljava/lang/Object;>(Lio/vertx/core/eventbus/impl/HandlerHolder<TT;>;)Z
    MethodParameters:
        Name  Flags
      holder  

  protected <T> void sendReply(io.vertx.core.eventbus.impl.MessageImpl, io.vertx.core.eventbus.impl.MessageImpl, io.vertx.core.eventbus.DeliveryOptions, io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.core.eventbus.Message<T>>>);
    descriptor: (Lio/vertx/core/eventbus/impl/MessageImpl;Lio/vertx/core/eventbus/impl/MessageImpl;Lio/vertx/core/eventbus/DeliveryOptions;Lio/vertx/core/Handler;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=7, locals=6, args_size=5
        start local 0 // io.vertx.core.eventbus.impl.EventBusImpl this
        start local 1 // io.vertx.core.eventbus.impl.MessageImpl replyMessage
        start local 2 // io.vertx.core.eventbus.impl.MessageImpl replierMessage
        start local 3 // io.vertx.core.eventbus.DeliveryOptions options
        start local 4 // io.vertx.core.Handler replyHandler
         0: .line 315
            aload 1 /* replyMessage */
            invokevirtual io.vertx.core.eventbus.impl.MessageImpl.address:()Ljava/lang/String;
            ifnonnull 2
         1: .line 316
            new java.lang.IllegalStateException
            dup
            ldc "address not specified"
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 318
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* replyMessage */
            aload 3 /* options */
            aload 4 /* replyHandler */
            invokevirtual io.vertx.core.eventbus.impl.EventBusImpl.createReplyHandlerRegistration:(Lio/vertx/core/eventbus/impl/MessageImpl;Lio/vertx/core/eventbus/DeliveryOptions;Lio/vertx/core/Handler;)Lio/vertx/core/eventbus/impl/HandlerRegistration;
            astore 5 /* replyHandlerRegistration */
        start local 5 // io.vertx.core.eventbus.impl.HandlerRegistration replyHandlerRegistration
         3: .line 319
            new io.vertx.core.eventbus.impl.EventBusImpl$OutboundDeliveryContext
            dup
            aload 0 /* this */
            aload 1 /* replyMessage */
            aload 3 /* options */
            aload 5 /* replyHandlerRegistration */
            aload 2 /* replierMessage */
            invokespecial io.vertx.core.eventbus.impl.EventBusImpl$OutboundDeliveryContext.<init>:(Lio/vertx/core/eventbus/impl/EventBusImpl;Lio/vertx/core/eventbus/impl/MessageImpl;Lio/vertx/core/eventbus/DeliveryOptions;Lio/vertx/core/eventbus/impl/HandlerRegistration;Lio/vertx/core/eventbus/impl/MessageImpl;)V
            invokevirtual io.vertx.core.eventbus.impl.EventBusImpl$OutboundDeliveryContext.next:()V
        end local 5 // io.vertx.core.eventbus.impl.HandlerRegistration replyHandlerRegistration
         4: .line 321
            return
        end local 4 // io.vertx.core.Handler replyHandler
        end local 3 // io.vertx.core.eventbus.DeliveryOptions options
        end local 2 // io.vertx.core.eventbus.impl.MessageImpl replierMessage
        end local 1 // io.vertx.core.eventbus.impl.MessageImpl replyMessage
        end local 0 // io.vertx.core.eventbus.impl.EventBusImpl this
      LocalVariableTable:
        Start  End  Slot                      Name  Signature
            0    5     0                      this  Lio/vertx/core/eventbus/impl/EventBusImpl;
            0    5     1              replyMessage  Lio/vertx/core/eventbus/impl/MessageImpl;
            0    5     2            replierMessage  Lio/vertx/core/eventbus/impl/MessageImpl;
            0    5     3                   options  Lio/vertx/core/eventbus/DeliveryOptions;
            0    5     4              replyHandler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/core/eventbus/Message<TT;>;>;>;
            3    4     5  replyHandlerRegistration  Lio/vertx/core/eventbus/impl/HandlerRegistration<TT;>;
    Signature: <T:Ljava/lang/Object;>(Lio/vertx/core/eventbus/impl/MessageImpl;Lio/vertx/core/eventbus/impl/MessageImpl;Lio/vertx/core/eventbus/DeliveryOptions;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/core/eventbus/Message<TT;>;>;>;)V
    MethodParameters:
                Name  Flags
      replyMessage    
      replierMessage  
      options         
      replyHandler    

  protected <T> void sendReply(io.vertx.core.eventbus.impl.EventBusImpl$OutboundDeliveryContext<T>, io.vertx.core.eventbus.impl.MessageImpl);
    descriptor: (Lio/vertx/core/eventbus/impl/EventBusImpl$OutboundDeliveryContext;Lio/vertx/core/eventbus/impl/MessageImpl;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // io.vertx.core.eventbus.impl.EventBusImpl this
        start local 1 // io.vertx.core.eventbus.impl.EventBusImpl$OutboundDeliveryContext sendContext
        start local 2 // io.vertx.core.eventbus.impl.MessageImpl replierMessage
         0: .line 324
            aload 0 /* this */
            aload 1 /* sendContext */
            invokevirtual io.vertx.core.eventbus.impl.EventBusImpl.sendOrPub:(Lio/vertx/core/eventbus/impl/EventBusImpl$OutboundDeliveryContext;)V
         1: .line 325
            return
        end local 2 // io.vertx.core.eventbus.impl.MessageImpl replierMessage
        end local 1 // io.vertx.core.eventbus.impl.EventBusImpl$OutboundDeliveryContext sendContext
        end local 0 // io.vertx.core.eventbus.impl.EventBusImpl this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    2     0            this  Lio/vertx/core/eventbus/impl/EventBusImpl;
            0    2     1     sendContext  Lio/vertx/core/eventbus/impl/EventBusImpl$OutboundDeliveryContext<TT;>;
            0    2     2  replierMessage  Lio/vertx/core/eventbus/impl/MessageImpl;
    Signature: <T:Ljava/lang/Object;>(Lio/vertx/core/eventbus/impl/EventBusImpl$OutboundDeliveryContext<TT;>;Lio/vertx/core/eventbus/impl/MessageImpl;)V
    MethodParameters:
                Name  Flags
      sendContext     
      replierMessage  

  protected <T> void sendOrPub(io.vertx.core.eventbus.impl.EventBusImpl$OutboundDeliveryContext<T>);
    descriptor: (Lio/vertx/core/eventbus/impl/EventBusImpl$OutboundDeliveryContext;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // io.vertx.core.eventbus.impl.EventBusImpl this
        start local 1 // io.vertx.core.eventbus.impl.EventBusImpl$OutboundDeliveryContext sendContext
         0: .line 328
            aload 1 /* sendContext */
            getfield io.vertx.core.eventbus.impl.EventBusImpl$OutboundDeliveryContext.message:Lio/vertx/core/eventbus/impl/MessageImpl;
            astore 2 /* message */
        start local 2 // io.vertx.core.eventbus.impl.MessageImpl message
         1: .line 329
            aload 0 /* this */
            getfield io.vertx.core.eventbus.impl.EventBusImpl.metrics:Lio/vertx/core/spi/metrics/EventBusMetrics;
            ifnull 5
         2: .line 330
            aload 0 /* this */
            getfield io.vertx.core.eventbus.impl.EventBusImpl.metrics:Lio/vertx/core/spi/metrics/EventBusMetrics;
            aload 2 /* message */
            invokevirtual io.vertx.core.eventbus.impl.MessageImpl.address:()Ljava/lang/String;
            aload 2 /* message */
            invokevirtual io.vertx.core.eventbus.impl.MessageImpl.isSend:()Z
            ifeq 3
            iconst_0
            goto 4
      StackMap locals: io.vertx.core.eventbus.impl.EventBusImpl io.vertx.core.eventbus.impl.EventBusImpl$OutboundDeliveryContext io.vertx.core.eventbus.impl.MessageImpl
      StackMap stack: io.vertx.core.spi.metrics.EventBusMetrics java.lang.String
         3: iconst_1
      StackMap locals: io.vertx.core.eventbus.impl.EventBusImpl io.vertx.core.eventbus.impl.EventBusImpl$OutboundDeliveryContext io.vertx.core.eventbus.impl.MessageImpl
      StackMap stack: io.vertx.core.spi.metrics.EventBusMetrics java.lang.String int
         4: iconst_1
            iconst_0
            invokeinterface io.vertx.core.spi.metrics.EventBusMetrics.messageSent:(Ljava/lang/String;ZZZ)V
         5: .line 332
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* sendContext */
            invokevirtual io.vertx.core.eventbus.impl.EventBusImpl.deliverMessageLocally:(Lio/vertx/core/eventbus/impl/EventBusImpl$OutboundDeliveryContext;)V
         6: .line 333
            return
        end local 2 // io.vertx.core.eventbus.impl.MessageImpl message
        end local 1 // io.vertx.core.eventbus.impl.EventBusImpl$OutboundDeliveryContext sendContext
        end local 0 // io.vertx.core.eventbus.impl.EventBusImpl this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    7     0         this  Lio/vertx/core/eventbus/impl/EventBusImpl;
            0    7     1  sendContext  Lio/vertx/core/eventbus/impl/EventBusImpl$OutboundDeliveryContext<TT;>;
            1    7     2      message  Lio/vertx/core/eventbus/impl/MessageImpl;
    Signature: <T:Ljava/lang/Object;>(Lio/vertx/core/eventbus/impl/EventBusImpl$OutboundDeliveryContext<TT;>;)V
    MethodParameters:
             Name  Flags
      sendContext  

  protected <T> io.vertx.core.Handler<io.vertx.core.eventbus.Message<T>> convertHandler(io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.core.eventbus.Message<T>>>);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/core/Handler;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.eventbus.impl.EventBusImpl this
        start local 1 // io.vertx.core.Handler handler
         0: .line 336
            aload 0 /* this */
            aload 1 /* handler */
            invokedynamic handle(Lio/vertx/core/eventbus/impl/EventBusImpl;Lio/vertx/core/Handler;)Lio/vertx/core/Handler;
              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/impl/EventBusImpl.lambda$4(Lio/vertx/core/Handler;Lio/vertx/core/eventbus/Message;)V (7)
                  (Lio/vertx/core/eventbus/Message;)V
            areturn
        end local 1 // io.vertx.core.Handler handler
        end local 0 // io.vertx.core.eventbus.impl.EventBusImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lio/vertx/core/eventbus/impl/EventBusImpl;
            0    1     1  handler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/core/eventbus/Message<TT;>;>;>;
    Signature: <T:Ljava/lang/Object;>(Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/core/eventbus/Message<TT;>;>;>;)Lio/vertx/core/Handler<Lio/vertx/core/eventbus/Message<TT;>;>;
    MethodParameters:
         Name  Flags
      handler  

  protected void callCompletionHandlerAsync(io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>);
    descriptor: (Lio/vertx/core/Handler;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.eventbus.impl.EventBusImpl this
        start local 1 // io.vertx.core.Handler completionHandler
         0: .line 353
            aload 1 /* completionHandler */
            ifnull 2
         1: .line 354
            aload 0 /* this */
            getfield io.vertx.core.eventbus.impl.EventBusImpl.vertx:Lio/vertx/core/impl/VertxInternal;
            aload 1 /* completionHandler */
            invokedynamic handle(Lio/vertx/core/Handler;)Lio/vertx/core/Handler;
              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/impl/EventBusImpl.lambda$5(Lio/vertx/core/Handler;Ljava/lang/Void;)V (6)
                  (Ljava/lang/Void;)V
            invokeinterface io.vertx.core.impl.VertxInternal.runOnContext:(Lio/vertx/core/Handler;)V
         2: .line 358
      StackMap locals:
      StackMap stack:
            return
        end local 1 // io.vertx.core.Handler completionHandler
        end local 0 // io.vertx.core.eventbus.impl.EventBusImpl this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0    3     0               this  Lio/vertx/core/eventbus/impl/EventBusImpl;
            0    3     1  completionHandler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;
    Signature: (Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;)V
    MethodParameters:
                   Name  Flags
      completionHandler  

  protected <T> void deliverMessageLocally(io.vertx.core.eventbus.impl.EventBusImpl$OutboundDeliveryContext<T>);
    descriptor: (Lio/vertx/core/eventbus/impl/EventBusImpl$OutboundDeliveryContext;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // io.vertx.core.eventbus.impl.EventBusImpl this
        start local 1 // io.vertx.core.eventbus.impl.EventBusImpl$OutboundDeliveryContext sendContext
         0: .line 361
            aload 0 /* this */
            aload 1 /* sendContext */
            getfield io.vertx.core.eventbus.impl.EventBusImpl$OutboundDeliveryContext.message:Lio/vertx/core/eventbus/impl/MessageImpl;
            invokevirtual io.vertx.core.eventbus.impl.EventBusImpl.deliverMessageLocally:(Lio/vertx/core/eventbus/impl/MessageImpl;)Lio/vertx/core/eventbus/ReplyException;
            astore 2 /* failure */
        start local 2 // io.vertx.core.eventbus.ReplyException failure
         1: .line 362
            aload 2 /* failure */
            ifnull 6
         2: .line 364
            aload 0 /* this */
            getfield io.vertx.core.eventbus.impl.EventBusImpl.metrics:Lio/vertx/core/spi/metrics/EventBusMetrics;
            ifnull 4
         3: .line 365
            aload 0 /* this */
            getfield io.vertx.core.eventbus.impl.EventBusImpl.metrics:Lio/vertx/core/spi/metrics/EventBusMetrics;
            aload 1 /* sendContext */
            getfield io.vertx.core.eventbus.impl.EventBusImpl$OutboundDeliveryContext.message:Lio/vertx/core/eventbus/impl/MessageImpl;
            getfield io.vertx.core.eventbus.impl.MessageImpl.address:Ljava/lang/String;
            getstatic io.vertx.core.eventbus.ReplyFailure.NO_HANDLERS:Lio/vertx/core/eventbus/ReplyFailure;
            invokeinterface io.vertx.core.spi.metrics.EventBusMetrics.replyFailure:(Ljava/lang/String;Lio/vertx/core/eventbus/ReplyFailure;)V
         4: .line 367
      StackMap locals: io.vertx.core.eventbus.ReplyException
      StackMap stack:
            aload 1 /* sendContext */
            getfield io.vertx.core.eventbus.impl.EventBusImpl$OutboundDeliveryContext.handlerRegistration:Lio/vertx/core/eventbus/impl/HandlerRegistration;
            ifnull 6
         5: .line 368
            aload 1 /* sendContext */
            getfield io.vertx.core.eventbus.impl.EventBusImpl$OutboundDeliveryContext.handlerRegistration:Lio/vertx/core/eventbus/impl/HandlerRegistration;
            aload 2 /* failure */
            invokevirtual io.vertx.core.eventbus.impl.HandlerRegistration.sendAsyncResultFailure:(Lio/vertx/core/eventbus/ReplyException;)V
         6: .line 371
      StackMap locals:
      StackMap stack:
            return
        end local 2 // io.vertx.core.eventbus.ReplyException failure
        end local 1 // io.vertx.core.eventbus.impl.EventBusImpl$OutboundDeliveryContext sendContext
        end local 0 // io.vertx.core.eventbus.impl.EventBusImpl this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    7     0         this  Lio/vertx/core/eventbus/impl/EventBusImpl;
            0    7     1  sendContext  Lio/vertx/core/eventbus/impl/EventBusImpl$OutboundDeliveryContext<TT;>;
            1    7     2      failure  Lio/vertx/core/eventbus/ReplyException;
    Signature: <T:Ljava/lang/Object;>(Lio/vertx/core/eventbus/impl/EventBusImpl$OutboundDeliveryContext<TT;>;)V
    MethodParameters:
             Name  Flags
      sendContext  

  protected boolean isMessageLocal(io.vertx.core.eventbus.impl.MessageImpl);
    descriptor: (Lio/vertx/core/eventbus/impl/MessageImpl;)Z
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // io.vertx.core.eventbus.impl.EventBusImpl this
        start local 1 // io.vertx.core.eventbus.impl.MessageImpl msg
         0: .line 374
            iconst_1
            ireturn
        end local 1 // io.vertx.core.eventbus.impl.MessageImpl msg
        end local 0 // io.vertx.core.eventbus.impl.EventBusImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/eventbus/impl/EventBusImpl;
            0    1     1   msg  Lio/vertx/core/eventbus/impl/MessageImpl;
    MethodParameters:
      Name  Flags
      msg   

  protected io.vertx.core.eventbus.ReplyException deliverMessageLocally(io.vertx.core.eventbus.impl.MessageImpl);
    descriptor: (Lio/vertx/core/eventbus/impl/MessageImpl;)Lio/vertx/core/eventbus/ReplyException;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=6, locals=5, args_size=2
        start local 0 // io.vertx.core.eventbus.impl.EventBusImpl this
        start local 1 // io.vertx.core.eventbus.impl.MessageImpl msg
         0: .line 378
            aload 1 /* msg */
            aload 0 /* this */
            invokevirtual io.vertx.core.eventbus.impl.MessageImpl.setBus:(Lio/vertx/core/eventbus/impl/EventBusImpl;)V
         1: .line 379
            aload 0 /* this */
            getfield io.vertx.core.eventbus.impl.EventBusImpl.handlerMap:Ljava/util/concurrent/ConcurrentMap;
            aload 1 /* msg */
            invokevirtual io.vertx.core.eventbus.impl.MessageImpl.address:()Ljava/lang/String;
            invokeinterface java.util.concurrent.ConcurrentMap.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast io.vertx.core.impl.utils.ConcurrentCyclicSequence
            astore 2 /* handlers */
        start local 2 // io.vertx.core.impl.utils.ConcurrentCyclicSequence handlers
         2: .line 380
            aload 2 /* handlers */
            ifnull 29
         3: .line 381
            aload 1 /* msg */
            invokevirtual io.vertx.core.eventbus.impl.MessageImpl.isSend:()Z
            ifeq 17
         4: .line 383
            aload 2 /* handlers */
            invokevirtual io.vertx.core.impl.utils.ConcurrentCyclicSequence.next:()Ljava/lang/Object;
            checkcast io.vertx.core.eventbus.impl.HandlerHolder
            astore 3 /* holder */
        start local 3 // io.vertx.core.eventbus.impl.HandlerHolder holder
         5: .line 384
            aload 0 /* this */
            getfield io.vertx.core.eventbus.impl.EventBusImpl.metrics:Lio/vertx/core/spi/metrics/EventBusMetrics;
            ifnull 11
         6: .line 385
            aload 0 /* this */
            getfield io.vertx.core.eventbus.impl.EventBusImpl.metrics:Lio/vertx/core/spi/metrics/EventBusMetrics;
            aload 1 /* msg */
            invokevirtual io.vertx.core.eventbus.impl.MessageImpl.address:()Ljava/lang/String;
            aload 1 /* msg */
            invokevirtual io.vertx.core.eventbus.impl.MessageImpl.isSend:()Z
            ifeq 7
            iconst_0
            goto 8
      StackMap locals: io.vertx.core.eventbus.impl.EventBusImpl io.vertx.core.eventbus.impl.MessageImpl io.vertx.core.impl.utils.ConcurrentCyclicSequence io.vertx.core.eventbus.impl.HandlerHolder
      StackMap stack: io.vertx.core.spi.metrics.EventBusMetrics java.lang.String
         7: iconst_1
      StackMap locals: io.vertx.core.eventbus.impl.EventBusImpl io.vertx.core.eventbus.impl.MessageImpl io.vertx.core.impl.utils.ConcurrentCyclicSequence io.vertx.core.eventbus.impl.HandlerHolder
      StackMap stack: io.vertx.core.spi.metrics.EventBusMetrics java.lang.String int
         8: aload 0 /* this */
            aload 1 /* msg */
            invokevirtual io.vertx.core.eventbus.impl.EventBusImpl.isMessageLocal:(Lio/vertx/core/eventbus/impl/MessageImpl;)Z
            aload 3 /* holder */
            ifnull 9
            iconst_1
            goto 10
      StackMap locals: io.vertx.core.eventbus.impl.EventBusImpl io.vertx.core.eventbus.impl.MessageImpl io.vertx.core.impl.utils.ConcurrentCyclicSequence io.vertx.core.eventbus.impl.HandlerHolder
      StackMap stack: io.vertx.core.spi.metrics.EventBusMetrics java.lang.String int int
         9: iconst_0
      StackMap locals: io.vertx.core.eventbus.impl.EventBusImpl io.vertx.core.eventbus.impl.MessageImpl io.vertx.core.impl.utils.ConcurrentCyclicSequence io.vertx.core.eventbus.impl.HandlerHolder
      StackMap stack: io.vertx.core.spi.metrics.EventBusMetrics java.lang.String int int int
        10: invokeinterface io.vertx.core.spi.metrics.EventBusMetrics.messageReceived:(Ljava/lang/String;ZZI)V
        11: .line 387
      StackMap locals:
      StackMap stack:
            aload 3 /* holder */
            ifnull 28
        12: .line 388
            aload 0 /* this */
            aload 1 /* msg */
            aload 3 /* holder */
            invokevirtual io.vertx.core.eventbus.impl.EventBusImpl.deliverToHandler:(Lio/vertx/core/eventbus/impl/MessageImpl;Lio/vertx/core/eventbus/impl/HandlerHolder;)V
        13: .line 389
            aload 1 /* msg */
            getfield io.vertx.core.eventbus.impl.MessageImpl.writeHandler:Lio/vertx/core/Handler;
            astore 4 /* handler */
        start local 4 // io.vertx.core.Handler handler
        14: .line 390
            aload 4 /* handler */
            ifnull 28
        15: .line 391
            aload 4 /* handler */
            invokestatic io.vertx.core.Future.succeededFuture:()Lio/vertx/core/Future;
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
        end local 4 // io.vertx.core.Handler handler
        end local 3 // io.vertx.core.eventbus.impl.HandlerHolder holder
        16: .line 394
            goto 28
        17: .line 396
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.core.eventbus.impl.EventBusImpl.metrics:Lio/vertx/core/spi/metrics/EventBusMetrics;
            ifnull 21
        18: .line 397
            aload 0 /* this */
            getfield io.vertx.core.eventbus.impl.EventBusImpl.metrics:Lio/vertx/core/spi/metrics/EventBusMetrics;
            aload 1 /* msg */
            invokevirtual io.vertx.core.eventbus.impl.MessageImpl.address:()Ljava/lang/String;
            aload 1 /* msg */
            invokevirtual io.vertx.core.eventbus.impl.MessageImpl.isSend:()Z
            ifeq 19
            iconst_0
            goto 20
      StackMap locals: io.vertx.core.eventbus.impl.EventBusImpl io.vertx.core.eventbus.impl.MessageImpl io.vertx.core.impl.utils.ConcurrentCyclicSequence
      StackMap stack: io.vertx.core.spi.metrics.EventBusMetrics java.lang.String
        19: iconst_1
      StackMap locals: io.vertx.core.eventbus.impl.EventBusImpl io.vertx.core.eventbus.impl.MessageImpl io.vertx.core.impl.utils.ConcurrentCyclicSequence
      StackMap stack: io.vertx.core.spi.metrics.EventBusMetrics java.lang.String int
        20: aload 0 /* this */
            aload 1 /* msg */
            invokevirtual io.vertx.core.eventbus.impl.EventBusImpl.isMessageLocal:(Lio/vertx/core/eventbus/impl/MessageImpl;)Z
            aload 2 /* handlers */
            invokevirtual io.vertx.core.impl.utils.ConcurrentCyclicSequence.size:()I
            invokeinterface io.vertx.core.spi.metrics.EventBusMetrics.messageReceived:(Ljava/lang/String;ZZI)V
        21: .line 399
      StackMap locals:
      StackMap stack:
            aload 2 /* handlers */
            invokevirtual io.vertx.core.impl.utils.ConcurrentCyclicSequence.iterator:()Ljava/util/Iterator;
            astore 4
            goto 24
      StackMap locals: io.vertx.core.eventbus.impl.EventBusImpl io.vertx.core.eventbus.impl.MessageImpl io.vertx.core.impl.utils.ConcurrentCyclicSequence top java.util.Iterator
      StackMap stack:
        22: aload 4
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast io.vertx.core.eventbus.impl.HandlerHolder
            astore 3 /* holder */
        start local 3 // io.vertx.core.eventbus.impl.HandlerHolder holder
        23: .line 400
            aload 0 /* this */
            aload 1 /* msg */
            aload 3 /* holder */
            invokevirtual io.vertx.core.eventbus.impl.EventBusImpl.deliverToHandler:(Lio/vertx/core/eventbus/impl/MessageImpl;Lio/vertx/core/eventbus/impl/HandlerHolder;)V
        end local 3 // io.vertx.core.eventbus.impl.HandlerHolder holder
        24: .line 399
      StackMap locals:
      StackMap stack:
            aload 4
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 22
        25: .line 402
            aload 1 /* msg */
            getfield io.vertx.core.eventbus.impl.MessageImpl.writeHandler:Lio/vertx/core/Handler;
            astore 3 /* handler */
        start local 3 // io.vertx.core.Handler handler
        26: .line 403
            aload 3 /* handler */
            ifnull 28
        27: .line 404
            aload 3 /* handler */
            invokestatic io.vertx.core.Future.succeededFuture:()Lio/vertx/core/Future;
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
        end local 3 // io.vertx.core.Handler handler
        28: .line 407
      StackMap locals: io.vertx.core.eventbus.impl.EventBusImpl io.vertx.core.eventbus.impl.MessageImpl io.vertx.core.impl.utils.ConcurrentCyclicSequence
      StackMap stack:
            aconst_null
            areturn
        29: .line 409
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.core.eventbus.impl.EventBusImpl.metrics:Lio/vertx/core/spi/metrics/EventBusMetrics;
            ifnull 33
        30: .line 410
            aload 0 /* this */
            getfield io.vertx.core.eventbus.impl.EventBusImpl.metrics:Lio/vertx/core/spi/metrics/EventBusMetrics;
            aload 1 /* msg */
            invokevirtual io.vertx.core.eventbus.impl.MessageImpl.address:()Ljava/lang/String;
            aload 1 /* msg */
            invokevirtual io.vertx.core.eventbus.impl.MessageImpl.isSend:()Z
            ifeq 31
            iconst_0
            goto 32
      StackMap locals: io.vertx.core.eventbus.impl.EventBusImpl io.vertx.core.eventbus.impl.MessageImpl io.vertx.core.impl.utils.ConcurrentCyclicSequence
      StackMap stack: io.vertx.core.spi.metrics.EventBusMetrics java.lang.String
        31: iconst_1
      StackMap locals: io.vertx.core.eventbus.impl.EventBusImpl io.vertx.core.eventbus.impl.MessageImpl io.vertx.core.impl.utils.ConcurrentCyclicSequence
      StackMap stack: io.vertx.core.spi.metrics.EventBusMetrics java.lang.String int
        32: aload 0 /* this */
            aload 1 /* msg */
            invokevirtual io.vertx.core.eventbus.impl.EventBusImpl.isMessageLocal:(Lio/vertx/core/eventbus/impl/MessageImpl;)Z
            iconst_0
            invokeinterface io.vertx.core.spi.metrics.EventBusMetrics.messageReceived:(Ljava/lang/String;ZZI)V
        33: .line 412
      StackMap locals:
      StackMap stack:
            new io.vertx.core.eventbus.ReplyException
            dup
            getstatic io.vertx.core.eventbus.ReplyFailure.NO_HANDLERS:Lio/vertx/core/eventbus/ReplyFailure;
            new java.lang.StringBuilder
            dup
            ldc "No handlers for address "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 1 /* msg */
            getfield io.vertx.core.eventbus.impl.MessageImpl.address:Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial io.vertx.core.eventbus.ReplyException.<init>:(Lio/vertx/core/eventbus/ReplyFailure;Ljava/lang/String;)V
            astore 3 /* failure */
        start local 3 // io.vertx.core.eventbus.ReplyException failure
        34: .line 413
            aload 1 /* msg */
            getfield io.vertx.core.eventbus.impl.MessageImpl.writeHandler:Lio/vertx/core/Handler;
            astore 4 /* handler */
        start local 4 // io.vertx.core.Handler handler
        35: .line 414
            aload 4 /* handler */
            ifnull 37
        36: .line 415
            aload 4 /* handler */
            aload 3 /* failure */
            invokestatic io.vertx.core.Future.failedFuture:(Ljava/lang/Throwable;)Lio/vertx/core/Future;
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
        37: .line 417
      StackMap locals: io.vertx.core.eventbus.ReplyException io.vertx.core.Handler
      StackMap stack:
            aload 3 /* failure */
            areturn
        end local 4 // io.vertx.core.Handler handler
        end local 3 // io.vertx.core.eventbus.ReplyException failure
        end local 2 // io.vertx.core.impl.utils.ConcurrentCyclicSequence handlers
        end local 1 // io.vertx.core.eventbus.impl.MessageImpl msg
        end local 0 // io.vertx.core.eventbus.impl.EventBusImpl this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   38     0      this  Lio/vertx/core/eventbus/impl/EventBusImpl;
            0   38     1       msg  Lio/vertx/core/eventbus/impl/MessageImpl;
            2   38     2  handlers  Lio/vertx/core/impl/utils/ConcurrentCyclicSequence<Lio/vertx/core/eventbus/impl/HandlerHolder;>;
            5   16     3    holder  Lio/vertx/core/eventbus/impl/HandlerHolder;
           14   16     4   handler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;
           23   24     3    holder  Lio/vertx/core/eventbus/impl/HandlerHolder;
           26   28     3   handler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;
           34   38     3   failure  Lio/vertx/core/eventbus/ReplyException;
           35   38     4   handler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;
    MethodParameters:
      Name  Flags
      msg   

  protected void checkStarted();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // io.vertx.core.eventbus.impl.EventBusImpl this
         0: .line 422
            aload 0 /* this */
            getfield io.vertx.core.eventbus.impl.EventBusImpl.started:Z
            ifne 2
         1: .line 423
            new java.lang.IllegalStateException
            dup
            ldc "Event Bus is not started"
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 425
      StackMap locals:
      StackMap stack:
            return
        end local 0 // io.vertx.core.eventbus.impl.EventBusImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/vertx/core/eventbus/impl/EventBusImpl;

  protected java.lang.String generateReplyAddress();
    descriptor: ()Ljava/lang/String;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // io.vertx.core.eventbus.impl.EventBusImpl this
         0: .line 428
            new java.lang.StringBuilder
            dup
            ldc "__vertx.reply."
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield io.vertx.core.eventbus.impl.EventBusImpl.replySequence:Ljava/util/concurrent/atomic/AtomicLong;
            invokevirtual java.util.concurrent.atomic.AtomicLong.incrementAndGet:()J
            invokestatic java.lang.Long.toString:(J)Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 0 // io.vertx.core.eventbus.impl.EventBusImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/eventbus/impl/EventBusImpl;

  private <T> io.vertx.core.eventbus.impl.HandlerRegistration<T> createReplyHandlerRegistration(io.vertx.core.eventbus.impl.MessageImpl, io.vertx.core.eventbus.DeliveryOptions, io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.core.eventbus.Message<T>>>);
    descriptor: (Lio/vertx/core/eventbus/impl/MessageImpl;Lio/vertx/core/eventbus/DeliveryOptions;Lio/vertx/core/Handler;)Lio/vertx/core/eventbus/impl/HandlerRegistration;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=11, locals=9, args_size=4
        start local 0 // io.vertx.core.eventbus.impl.EventBusImpl this
        start local 1 // io.vertx.core.eventbus.impl.MessageImpl message
        start local 2 // io.vertx.core.eventbus.DeliveryOptions options
        start local 3 // io.vertx.core.Handler replyHandler
         0: .line 434
            aload 3 /* replyHandler */
            ifnull 9
         1: .line 435
            aload 2 /* options */
            invokevirtual io.vertx.core.eventbus.DeliveryOptions.getSendTimeout:()J
            lstore 4 /* timeout */
        start local 4 // long timeout
         2: .line 436
            aload 0 /* this */
            invokevirtual io.vertx.core.eventbus.impl.EventBusImpl.generateReplyAddress:()Ljava/lang/String;
            astore 6 /* replyAddress */
        start local 6 // java.lang.String replyAddress
         3: .line 437
            aload 1 /* message */
            aload 6 /* replyAddress */
            invokevirtual io.vertx.core.eventbus.impl.MessageImpl.setReplyAddress:(Ljava/lang/String;)V
         4: .line 438
            aload 0 /* this */
            aload 3 /* replyHandler */
            invokevirtual io.vertx.core.eventbus.impl.EventBusImpl.convertHandler:(Lio/vertx/core/Handler;)Lio/vertx/core/Handler;
            astore 7 /* simpleReplyHandler */
        start local 7 // io.vertx.core.Handler simpleReplyHandler
         5: .line 440
            new io.vertx.core.eventbus.impl.HandlerRegistration
            dup
            aload 0 /* this */
            getfield io.vertx.core.eventbus.impl.EventBusImpl.vertx:Lio/vertx/core/impl/VertxInternal;
            aload 0 /* this */
            getfield io.vertx.core.eventbus.impl.EventBusImpl.metrics:Lio/vertx/core/spi/metrics/EventBusMetrics;
            aload 0 /* this */
            aload 6 /* replyAddress */
            aload 1 /* message */
            getfield io.vertx.core.eventbus.impl.MessageImpl.address:Ljava/lang/String;
            iconst_1
            aload 3 /* replyHandler */
            lload 4 /* timeout */
            invokespecial io.vertx.core.eventbus.impl.HandlerRegistration.<init>:(Lio/vertx/core/Vertx;Lio/vertx/core/spi/metrics/EventBusMetrics;Lio/vertx/core/eventbus/impl/EventBusImpl;Ljava/lang/String;Ljava/lang/String;ZLio/vertx/core/Handler;J)V
         6: .line 439
            astore 8 /* registration */
        start local 8 // io.vertx.core.eventbus.impl.HandlerRegistration registration
         7: .line 441
            aload 8 /* registration */
            aload 7 /* simpleReplyHandler */
            invokevirtual io.vertx.core.eventbus.impl.HandlerRegistration.handler:(Lio/vertx/core/Handler;)Lio/vertx/core/eventbus/MessageConsumer;
            pop
         8: .line 442
            aload 8 /* registration */
            areturn
        end local 8 // io.vertx.core.eventbus.impl.HandlerRegistration registration
        end local 7 // io.vertx.core.Handler simpleReplyHandler
        end local 6 // java.lang.String replyAddress
        end local 4 // long timeout
         9: .line 444
      StackMap locals:
      StackMap stack:
            aconst_null
            areturn
        end local 3 // io.vertx.core.Handler replyHandler
        end local 2 // io.vertx.core.eventbus.DeliveryOptions options
        end local 1 // io.vertx.core.eventbus.impl.MessageImpl message
        end local 0 // io.vertx.core.eventbus.impl.EventBusImpl this
      LocalVariableTable:
        Start  End  Slot                Name  Signature
            0   10     0                this  Lio/vertx/core/eventbus/impl/EventBusImpl;
            0   10     1             message  Lio/vertx/core/eventbus/impl/MessageImpl;
            0   10     2             options  Lio/vertx/core/eventbus/DeliveryOptions;
            0   10     3        replyHandler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/core/eventbus/Message<TT;>;>;>;
            2    9     4             timeout  J
            3    9     6        replyAddress  Ljava/lang/String;
            5    9     7  simpleReplyHandler  Lio/vertx/core/Handler<Lio/vertx/core/eventbus/Message<TT;>;>;
            7    9     8        registration  Lio/vertx/core/eventbus/impl/HandlerRegistration<TT;>;
    Signature: <T:Ljava/lang/Object;>(Lio/vertx/core/eventbus/impl/MessageImpl;Lio/vertx/core/eventbus/DeliveryOptions;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/core/eventbus/Message<TT;>;>;>;)Lio/vertx/core/eventbus/impl/HandlerRegistration<TT;>;
    MethodParameters:
              Name  Flags
      message       
      options       
      replyHandler  

  public <T> void sendOrPubInternal(io.vertx.core.eventbus.impl.MessageImpl, io.vertx.core.eventbus.DeliveryOptions, io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.core.eventbus.Message<T>>>);
    descriptor: (Lio/vertx/core/eventbus/impl/MessageImpl;Lio/vertx/core/eventbus/DeliveryOptions;Lio/vertx/core/Handler;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=6, args_size=4
        start local 0 // io.vertx.core.eventbus.impl.EventBusImpl this
        start local 1 // io.vertx.core.eventbus.impl.MessageImpl message
        start local 2 // io.vertx.core.eventbus.DeliveryOptions options
        start local 3 // io.vertx.core.Handler replyHandler
         0: .line 450
            aload 0 /* this */
            invokevirtual io.vertx.core.eventbus.impl.EventBusImpl.checkStarted:()V
         1: .line 451
            aload 0 /* this */
            aload 1 /* message */
            aload 2 /* options */
            aload 3 /* replyHandler */
            invokevirtual io.vertx.core.eventbus.impl.EventBusImpl.createReplyHandlerRegistration:(Lio/vertx/core/eventbus/impl/MessageImpl;Lio/vertx/core/eventbus/DeliveryOptions;Lio/vertx/core/Handler;)Lio/vertx/core/eventbus/impl/HandlerRegistration;
            astore 4 /* replyHandlerRegistration */
        start local 4 // io.vertx.core.eventbus.impl.HandlerRegistration replyHandlerRegistration
         2: .line 452
            new io.vertx.core.eventbus.impl.EventBusImpl$OutboundDeliveryContext
            dup
            aload 0 /* this */
            aload 1 /* message */
            aload 2 /* options */
            aload 4 /* replyHandlerRegistration */
            invokespecial io.vertx.core.eventbus.impl.EventBusImpl$OutboundDeliveryContext.<init>:(Lio/vertx/core/eventbus/impl/EventBusImpl;Lio/vertx/core/eventbus/impl/MessageImpl;Lio/vertx/core/eventbus/DeliveryOptions;Lio/vertx/core/eventbus/impl/HandlerRegistration;)V
            astore 5 /* sendContext */
        start local 5 // io.vertx.core.eventbus.impl.EventBusImpl$OutboundDeliveryContext sendContext
         3: .line 453
            aload 5 /* sendContext */
            invokevirtual io.vertx.core.eventbus.impl.EventBusImpl$OutboundDeliveryContext.next:()V
         4: .line 454
            return
        end local 5 // io.vertx.core.eventbus.impl.EventBusImpl$OutboundDeliveryContext sendContext
        end local 4 // io.vertx.core.eventbus.impl.HandlerRegistration replyHandlerRegistration
        end local 3 // io.vertx.core.Handler replyHandler
        end local 2 // io.vertx.core.eventbus.DeliveryOptions options
        end local 1 // io.vertx.core.eventbus.impl.MessageImpl message
        end local 0 // io.vertx.core.eventbus.impl.EventBusImpl this
      LocalVariableTable:
        Start  End  Slot                      Name  Signature
            0    5     0                      this  Lio/vertx/core/eventbus/impl/EventBusImpl;
            0    5     1                   message  Lio/vertx/core/eventbus/impl/MessageImpl;
            0    5     2                   options  Lio/vertx/core/eventbus/DeliveryOptions;
            0    5     3              replyHandler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/core/eventbus/Message<TT;>;>;>;
            2    5     4  replyHandlerRegistration  Lio/vertx/core/eventbus/impl/HandlerRegistration<TT;>;
            3    5     5               sendContext  Lio/vertx/core/eventbus/impl/EventBusImpl$OutboundDeliveryContext<TT;>;
    Signature: <T:Ljava/lang/Object;>(Lio/vertx/core/eventbus/impl/MessageImpl;Lio/vertx/core/eventbus/DeliveryOptions;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/core/eventbus/Message<TT;>;>;>;)V
    MethodParameters:
              Name  Flags
      message       
      options       
      replyHandler  

  private void unregisterAll();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=1, locals=5, args_size=1
        start local 0 // io.vertx.core.eventbus.impl.EventBusImpl this
         0: .line 516
            aload 0 /* this */
            getfield io.vertx.core.eventbus.impl.EventBusImpl.handlerMap:Ljava/util/concurrent/ConcurrentMap;
            invokeinterface java.util.concurrent.ConcurrentMap.values:()Ljava/util/Collection;
            invokeinterface java.util.Collection.iterator:()Ljava/util/Iterator;
            astore 2
            goto 6
      StackMap locals: io.vertx.core.eventbus.impl.EventBusImpl top java.util.Iterator
      StackMap stack:
         1: aload 2
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast io.vertx.core.impl.utils.ConcurrentCyclicSequence
            astore 1 /* handlers */
        start local 1 // io.vertx.core.impl.utils.ConcurrentCyclicSequence handlers
         2: .line 517
            aload 1 /* handlers */
            invokevirtual io.vertx.core.impl.utils.ConcurrentCyclicSequence.iterator:()Ljava/util/Iterator;
            astore 4
            goto 5
      StackMap locals: io.vertx.core.eventbus.impl.EventBusImpl io.vertx.core.impl.utils.ConcurrentCyclicSequence java.util.Iterator top java.util.Iterator
      StackMap stack:
         3: aload 4
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast io.vertx.core.eventbus.impl.HandlerHolder
            astore 3 /* holder */
        start local 3 // io.vertx.core.eventbus.impl.HandlerHolder holder
         4: .line 518
            aload 3 /* holder */
            invokevirtual io.vertx.core.eventbus.impl.HandlerHolder.getHandler:()Lio/vertx/core/eventbus/impl/HandlerRegistration;
            invokevirtual io.vertx.core.eventbus.impl.HandlerRegistration.unregister:()V
        end local 3 // io.vertx.core.eventbus.impl.HandlerHolder holder
         5: .line 517
      StackMap locals:
      StackMap stack:
            aload 4
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 3
        end local 1 // io.vertx.core.impl.utils.ConcurrentCyclicSequence handlers
         6: .line 516
      StackMap locals: io.vertx.core.eventbus.impl.EventBusImpl top java.util.Iterator
      StackMap stack:
            aload 2
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 1
         7: .line 521
            return
        end local 0 // io.vertx.core.eventbus.impl.EventBusImpl this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    8     0      this  Lio/vertx/core/eventbus/impl/EventBusImpl;
            2    6     1  handlers  Lio/vertx/core/impl/utils/ConcurrentCyclicSequence<Lio/vertx/core/eventbus/impl/HandlerHolder;>;
            4    5     3    holder  Lio/vertx/core/eventbus/impl/HandlerHolder;

  private <T> void deliverToHandler(io.vertx.core.eventbus.impl.MessageImpl, io.vertx.core.eventbus.impl.HandlerHolder<T>);
    descriptor: (Lio/vertx/core/eventbus/impl/MessageImpl;Lio/vertx/core/eventbus/impl/HandlerHolder;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=5, args_size=3
        start local 0 // io.vertx.core.eventbus.impl.EventBusImpl this
        start local 1 // io.vertx.core.eventbus.impl.MessageImpl msg
        start local 2 // io.vertx.core.eventbus.impl.HandlerHolder holder
         0: .line 525
            aload 1 /* msg */
            invokevirtual io.vertx.core.eventbus.impl.MessageImpl.copyBeforeReceive:()Lio/vertx/core/eventbus/impl/MessageImpl;
            astore 3 /* copied */
        start local 3 // io.vertx.core.eventbus.impl.MessageImpl copied
         1: .line 526
            new io.vertx.core.eventbus.impl.EventBusImpl$InboundDeliveryContext
            dup
            aload 0 /* this */
            aload 3 /* copied */
            aload 2 /* holder */
            invokespecial io.vertx.core.eventbus.impl.EventBusImpl$InboundDeliveryContext.<init>:(Lio/vertx/core/eventbus/impl/EventBusImpl;Lio/vertx/core/eventbus/impl/MessageImpl;Lio/vertx/core/eventbus/impl/HandlerHolder;)V
            astore 4 /* receiveContext */
        start local 4 // io.vertx.core.eventbus.DeliveryContext receiveContext
         2: .line 528
            aload 0 /* this */
            getfield io.vertx.core.eventbus.impl.EventBusImpl.metrics:Lio/vertx/core/spi/metrics/EventBusMetrics;
            ifnull 4
         3: .line 529
            aload 0 /* this */
            getfield io.vertx.core.eventbus.impl.EventBusImpl.metrics:Lio/vertx/core/spi/metrics/EventBusMetrics;
            aload 2 /* holder */
            invokevirtual io.vertx.core.eventbus.impl.HandlerHolder.getHandler:()Lio/vertx/core/eventbus/impl/HandlerRegistration;
            invokevirtual io.vertx.core.eventbus.impl.HandlerRegistration.getMetric:()Ljava/lang/Object;
            aload 1 /* msg */
            invokevirtual io.vertx.core.eventbus.impl.MessageImpl.isLocal:()Z
            invokeinterface io.vertx.core.spi.metrics.EventBusMetrics.scheduleMessage:(Ljava/lang/Object;Z)V
         4: .line 532
      StackMap locals: io.vertx.core.eventbus.impl.MessageImpl io.vertx.core.eventbus.DeliveryContext
      StackMap stack:
            aload 2 /* holder */
            invokevirtual io.vertx.core.eventbus.impl.HandlerHolder.getContext:()Lio/vertx/core/Context;
            aload 2 /* holder */
            aload 4 /* receiveContext */
            invokedynamic handle(Lio/vertx/core/eventbus/impl/HandlerHolder;Lio/vertx/core/eventbus/DeliveryContext;)Lio/vertx/core/Handler;
              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/impl/EventBusImpl.lambda$6(Lio/vertx/core/eventbus/impl/HandlerHolder;Lio/vertx/core/eventbus/DeliveryContext;Ljava/lang/Void;)V (6)
                  (Ljava/lang/Void;)V
            invokeinterface io.vertx.core.Context.runOnContext:(Lio/vertx/core/Handler;)V
         5: .line 545
            return
        end local 4 // io.vertx.core.eventbus.DeliveryContext receiveContext
        end local 3 // io.vertx.core.eventbus.impl.MessageImpl copied
        end local 2 // io.vertx.core.eventbus.impl.HandlerHolder holder
        end local 1 // io.vertx.core.eventbus.impl.MessageImpl msg
        end local 0 // io.vertx.core.eventbus.impl.EventBusImpl this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    6     0            this  Lio/vertx/core/eventbus/impl/EventBusImpl;
            0    6     1             msg  Lio/vertx/core/eventbus/impl/MessageImpl;
            0    6     2          holder  Lio/vertx/core/eventbus/impl/HandlerHolder<TT;>;
            1    6     3          copied  Lio/vertx/core/eventbus/impl/MessageImpl;
            2    6     4  receiveContext  Lio/vertx/core/eventbus/DeliveryContext<TT;>;
    Signature: <T:Ljava/lang/Object;>(Lio/vertx/core/eventbus/impl/MessageImpl;Lio/vertx/core/eventbus/impl/HandlerHolder<TT;>;)V
    MethodParameters:
        Name  Flags
      msg     
      holder  

  protected void finalize();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.vertx.core.eventbus.impl.EventBusImpl this
         0: .line 632
            aload 0 /* this */
            invokedynamic handle()Lio/vertx/core/Handler;
              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/impl/EventBusImpl.lambda$7(Lio/vertx/core/AsyncResult;)V (6)
                  (Lio/vertx/core/AsyncResult;)V
            invokevirtual io.vertx.core.eventbus.impl.EventBusImpl.close:(Lio/vertx/core/Handler;)V
         1: .line 633
            aload 0 /* this */
            invokespecial java.lang.Object.finalize:()V
         2: .line 634
            return
        end local 0 // io.vertx.core.eventbus.impl.EventBusImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/vertx/core/eventbus/impl/EventBusImpl;
    Exceptions:
      throws java.lang.Throwable

  public io.vertx.core.spi.metrics.Metrics getMetrics();
    descriptor: ()Lio/vertx/core/spi/metrics/Metrics;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual io.vertx.core.eventbus.impl.EventBusImpl.getMetrics:()Lio/vertx/core/spi/metrics/EventBusMetrics;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  private static void lambda$0(io.vertx.core.Handler, java.lang.Void);
    descriptor: (Lio/vertx/core/Handler;Ljava/lang/Void;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
        start local 1 // java.lang.Void v
         0: .line 214
            aload 0
            invokestatic io.vertx.core.Future.succeededFuture:()Lio/vertx/core/Future;
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
            return
        end local 1 // java.lang.Void v
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     1     v  Ljava/lang/Void;

  private static io.vertx.core.impl.utils.ConcurrentCyclicSequence lambda$2(io.vertx.core.impl.utils.ConcurrentCyclicSequence, io.vertx.core.impl.utils.ConcurrentCyclicSequence);
    descriptor: (Lio/vertx/core/impl/utils/ConcurrentCyclicSequence;Lio/vertx/core/impl/utils/ConcurrentCyclicSequence;)Lio/vertx/core/impl/utils/ConcurrentCyclicSequence;
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.impl.utils.ConcurrentCyclicSequence old
        start local 1 // io.vertx.core.impl.utils.ConcurrentCyclicSequence prev
         0: .line 277
            aload 0 /* old */
            aload 1 /* prev */
            invokevirtual io.vertx.core.impl.utils.ConcurrentCyclicSequence.first:()Ljava/lang/Object;
            checkcast io.vertx.core.eventbus.impl.HandlerHolder
            invokevirtual io.vertx.core.impl.utils.ConcurrentCyclicSequence.add:(Ljava/lang/Object;)Lio/vertx/core/impl/utils/ConcurrentCyclicSequence;
            areturn
        end local 1 // io.vertx.core.impl.utils.ConcurrentCyclicSequence prev
        end local 0 // io.vertx.core.impl.utils.ConcurrentCyclicSequence old
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0   old  Lio/vertx/core/impl/utils/ConcurrentCyclicSequence<Lio/vertx/core/eventbus/impl/HandlerHolder;>;
            0    1     1  prev  Lio/vertx/core/impl/utils/ConcurrentCyclicSequence<Lio/vertx/core/eventbus/impl/HandlerHolder;>;

  private static io.vertx.core.impl.utils.ConcurrentCyclicSequence lambda$3(io.vertx.core.eventbus.impl.HandlerHolder, java.lang.String, io.vertx.core.impl.utils.ConcurrentCyclicSequence);
    descriptor: (Lio/vertx/core/eventbus/impl/HandlerHolder;Ljava/lang/String;Lio/vertx/core/impl/utils/ConcurrentCyclicSequence;)Lio/vertx/core/impl/utils/ConcurrentCyclicSequence;
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=2, locals=4, args_size=3
        start local 1 // java.lang.String key
        start local 2 // io.vertx.core.impl.utils.ConcurrentCyclicSequence val
         0: .line 301
            aload 2 /* val */
            ifnonnull 2
         1: .line 302
            aconst_null
            areturn
         2: .line 304
      StackMap locals:
      StackMap stack:
            aload 2 /* val */
            aload 0
            invokevirtual io.vertx.core.impl.utils.ConcurrentCyclicSequence.remove:(Ljava/lang/Object;)Lio/vertx/core/impl/utils/ConcurrentCyclicSequence;
            astore 3 /* next */
        start local 3 // io.vertx.core.impl.utils.ConcurrentCyclicSequence next
         3: .line 305
            aload 3 /* next */
            invokevirtual io.vertx.core.impl.utils.ConcurrentCyclicSequence.size:()I
            ifne 4
            aconst_null
            goto 5
      StackMap locals: io.vertx.core.impl.utils.ConcurrentCyclicSequence
      StackMap stack:
         4: aload 3 /* next */
      StackMap locals:
      StackMap stack: io.vertx.core.impl.utils.ConcurrentCyclicSequence
         5: areturn
        end local 3 // io.vertx.core.impl.utils.ConcurrentCyclicSequence next
        end local 2 // io.vertx.core.impl.utils.ConcurrentCyclicSequence val
        end local 1 // java.lang.String key
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     1   key  Ljava/lang/String;
            0    6     2   val  Lio/vertx/core/impl/utils/ConcurrentCyclicSequence<Lio/vertx/core/eventbus/impl/HandlerHolder;>;
            3    6     3  next  Lio/vertx/core/impl/utils/ConcurrentCyclicSequence<Lio/vertx/core/eventbus/impl/HandlerHolder;>;

  private void lambda$4(io.vertx.core.Handler, io.vertx.core.eventbus.Message);
    descriptor: (Lio/vertx/core/Handler;Lio/vertx/core/eventbus/Message;)V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=3, locals=5, args_size=3
        start local 0 // io.vertx.core.eventbus.impl.EventBusImpl this
        start local 2 // io.vertx.core.eventbus.Message reply
         0: .line 338
            aload 2 /* reply */
            invokeinterface io.vertx.core.eventbus.Message.body:()Ljava/lang/Object;
            instanceof io.vertx.core.eventbus.ReplyException
            ifeq 6
         1: .line 340
            aload 2 /* reply */
            invokeinterface io.vertx.core.eventbus.Message.body:()Ljava/lang/Object;
            checkcast io.vertx.core.eventbus.ReplyException
            astore 4 /* exception */
        start local 4 // io.vertx.core.eventbus.ReplyException exception
         2: .line 341
            aload 0 /* this */
            getfield io.vertx.core.eventbus.impl.EventBusImpl.metrics:Lio/vertx/core/spi/metrics/EventBusMetrics;
            ifnull 4
         3: .line 342
            aload 0 /* this */
            getfield io.vertx.core.eventbus.impl.EventBusImpl.metrics:Lio/vertx/core/spi/metrics/EventBusMetrics;
            aload 2 /* reply */
            invokeinterface io.vertx.core.eventbus.Message.address:()Ljava/lang/String;
            aload 4 /* exception */
            invokevirtual io.vertx.core.eventbus.ReplyException.failureType:()Lio/vertx/core/eventbus/ReplyFailure;
            invokeinterface io.vertx.core.spi.metrics.EventBusMetrics.replyFailure:(Ljava/lang/String;Lio/vertx/core/eventbus/ReplyFailure;)V
         4: .line 344
      StackMap locals: io.vertx.core.eventbus.impl.EventBusImpl io.vertx.core.Handler io.vertx.core.eventbus.Message top io.vertx.core.eventbus.ReplyException
      StackMap stack:
            aload 4 /* exception */
            invokestatic io.vertx.core.Future.failedFuture:(Ljava/lang/Throwable;)Lio/vertx/core/Future;
            astore 3 /* result */
        end local 4 // io.vertx.core.eventbus.ReplyException exception
        start local 3 // io.vertx.core.Future result
         5: .line 345
            goto 7
        end local 3 // io.vertx.core.Future result
         6: .line 346
      StackMap locals: io.vertx.core.eventbus.impl.EventBusImpl io.vertx.core.Handler io.vertx.core.eventbus.Message
      StackMap stack:
            aload 2 /* reply */
            invokestatic io.vertx.core.Future.succeededFuture:(Ljava/lang/Object;)Lio/vertx/core/Future;
            astore 3 /* result */
        start local 3 // io.vertx.core.Future result
         7: .line 348
      StackMap locals: io.vertx.core.Future
      StackMap stack:
            aload 1
            aload 3 /* result */
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
        end local 3 // io.vertx.core.Future result
         8: .line 349
            return
        end local 2 // io.vertx.core.eventbus.Message reply
        end local 0 // io.vertx.core.eventbus.impl.EventBusImpl this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    9     0       this  Lio/vertx/core/eventbus/impl/EventBusImpl;
            0    9     2      reply  Lio/vertx/core/eventbus/Message<TT;>;
            5    6     3     result  Lio/vertx/core/Future<Lio/vertx/core/eventbus/Message<TT;>;>;
            7    8     3     result  Lio/vertx/core/Future<Lio/vertx/core/eventbus/Message<TT;>;>;
            2    5     4  exception  Lio/vertx/core/eventbus/ReplyException;

  private static void lambda$5(io.vertx.core.Handler, java.lang.Void);
    descriptor: (Lio/vertx/core/Handler;Ljava/lang/Void;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
        start local 1 // java.lang.Void v
         0: .line 355
            aload 0
            invokestatic io.vertx.core.Future.succeededFuture:()Lio/vertx/core/Future;
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
         1: .line 356
            return
        end local 1 // java.lang.Void v
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     1     v  Ljava/lang/Void;

  private static void lambda$6(io.vertx.core.eventbus.impl.HandlerHolder, io.vertx.core.eventbus.DeliveryContext, java.lang.Void);
    descriptor: (Lio/vertx/core/eventbus/impl/HandlerHolder;Lio/vertx/core/eventbus/DeliveryContext;Ljava/lang/Void;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=1, locals=4, args_size=3
        start local 2 // java.lang.Void v
         0: .line 536
            aload 0
            invokevirtual io.vertx.core.eventbus.impl.HandlerHolder.isRemoved:()Z
            ifne 7
         1: .line 537
            aload 1
            invokeinterface io.vertx.core.eventbus.DeliveryContext.next:()V
         2: .line 539
            goto 7
      StackMap locals:
      StackMap stack: java.lang.Throwable
         3: astore 3
         4: .line 540
            aload 0
            invokevirtual io.vertx.core.eventbus.impl.HandlerHolder.isReplyHandler:()Z
            ifeq 6
         5: .line 541
            aload 0
            invokevirtual io.vertx.core.eventbus.impl.HandlerHolder.getHandler:()Lio/vertx/core/eventbus/impl/HandlerRegistration;
            invokevirtual io.vertx.core.eventbus.impl.HandlerRegistration.unregister:()V
         6: .line 543
      StackMap locals: java.lang.Throwable
      StackMap stack:
            aload 3
            athrow
         7: .line 540
      StackMap locals:
      StackMap stack:
            aload 0
            invokevirtual io.vertx.core.eventbus.impl.HandlerHolder.isReplyHandler:()Z
            ifeq 9
         8: .line 541
            aload 0
            invokevirtual io.vertx.core.eventbus.impl.HandlerHolder.getHandler:()Lio/vertx/core/eventbus/impl/HandlerRegistration;
            invokevirtual io.vertx.core.eventbus.impl.HandlerRegistration.unregister:()V
         9: .line 544
      StackMap locals:
      StackMap stack:
            return
        end local 2 // java.lang.Void v
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   10     2     v  Ljava/lang/Void;
      Exception table:
        from    to  target  type
           0     3       3  any

  private static void lambda$7(io.vertx.core.AsyncResult);
    descriptor: (Lio/vertx/core/AsyncResult;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=0, locals=1, args_size=1
        start local 0 // io.vertx.core.AsyncResult ar
         0: .line 632
            return
        end local 0 // io.vertx.core.AsyncResult ar
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0    ar  Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;
}
SourceFile: "EventBusImpl.java"
NestMembers:
  io.vertx.core.eventbus.impl.EventBusImpl$HandlerEntry  io.vertx.core.eventbus.impl.EventBusImpl$InboundDeliveryContext  io.vertx.core.eventbus.impl.EventBusImpl$LocalRegistrationResult  io.vertx.core.eventbus.impl.EventBusImpl$OutboundDeliveryContext
InnerClasses:
  public HandlerEntry = io.vertx.core.eventbus.impl.EventBusImpl$HandlerEntry of io.vertx.core.eventbus.impl.EventBusImpl
  protected InboundDeliveryContext = io.vertx.core.eventbus.impl.EventBusImpl$InboundDeliveryContext of io.vertx.core.eventbus.impl.EventBusImpl
  private LocalRegistrationResult = io.vertx.core.eventbus.impl.EventBusImpl$LocalRegistrationResult of io.vertx.core.eventbus.impl.EventBusImpl
  protected OutboundDeliveryContext = io.vertx.core.eventbus.impl.EventBusImpl$OutboundDeliveryContext of io.vertx.core.eventbus.impl.EventBusImpl
  public final Lookup = java.lang.invoke.MethodHandles$Lookup of java.lang.invoke.MethodHandles