public class io.vertx.core.eventbus.impl.MessageConsumerImpl<T> extends io.vertx.core.eventbus.impl.HandlerRegistration<T> implements io.vertx.core.eventbus.MessageConsumer<T>
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: io.vertx.core.eventbus.impl.MessageConsumerImpl
  super_class: io.vertx.core.eventbus.impl.HandlerRegistration
{
  private static final io.vertx.core.impl.logging.Logger log;
    descriptor: Lio/vertx/core/impl/logging/Logger;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private static final int DEFAULT_MAX_BUFFERED_MESSAGES;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 1000

  private final io.vertx.core.Vertx vertx;
    descriptor: Lio/vertx/core/Vertx;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final io.vertx.core.impl.ContextInternal context;
    descriptor: Lio/vertx/core/impl/ContextInternal;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final io.vertx.core.eventbus.impl.EventBusImpl eventBus;
    descriptor: Lio/vertx/core/eventbus/impl/EventBusImpl;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final java.lang.String address;
    descriptor: Ljava/lang/String;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final boolean localOnly;
    descriptor: Z
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private io.vertx.core.Handler<io.vertx.core.eventbus.Message<T>> handler;
    descriptor: Lio/vertx/core/Handler;
    flags: (0x0002) ACC_PRIVATE
    Signature: Lio/vertx/core/Handler<Lio/vertx/core/eventbus/Message<TT;>;>;

  private io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>> completionHandler;
    descriptor: Lio/vertx/core/Handler;
    flags: (0x0002) ACC_PRIVATE
    Signature: Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;

  private io.vertx.core.Handler<java.lang.Void> endHandler;
    descriptor: Lio/vertx/core/Handler;
    flags: (0x0002) ACC_PRIVATE
    Signature: Lio/vertx/core/Handler<Ljava/lang/Void;>;

  private io.vertx.core.Handler<io.vertx.core.eventbus.Message<T>> discardHandler;
    descriptor: Lio/vertx/core/Handler;
    flags: (0x0002) ACC_PRIVATE
    Signature: Lio/vertx/core/Handler<Lio/vertx/core/eventbus/Message<TT;>;>;

  private int maxBufferedMessages;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private java.util.Queue<io.vertx.core.eventbus.Message<T>> pending;
    descriptor: Ljava/util/Queue;
    flags: (0x0002) ACC_PRIVATE
    Signature: Ljava/util/Queue<Lio/vertx/core/eventbus/Message<TT;>;>;

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

  private io.vertx.core.Promise<java.lang.Void> result;
    descriptor: Lio/vertx/core/Promise;
    flags: (0x0002) ACC_PRIVATE
    Signature: Lio/vertx/core/Promise<Ljava/lang/Void;>;

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

  void <init>(io.vertx.core.Vertx, io.vertx.core.impl.ContextInternal, io.vertx.core.eventbus.impl.EventBusImpl, java.lang.String, boolean);
    descriptor: (Lio/vertx/core/Vertx;Lio/vertx/core/impl/ContextInternal;Lio/vertx/core/eventbus/impl/EventBusImpl;Ljava/lang/String;Z)V
    flags: (0x0000) 
    Code:
      stack=5, locals=6, args_size=6
        start local 0 // io.vertx.core.eventbus.impl.MessageConsumerImpl this
        start local 1 // io.vertx.core.Vertx vertx
        start local 2 // io.vertx.core.impl.ContextInternal context
        start local 3 // io.vertx.core.eventbus.impl.EventBusImpl eventBus
        start local 4 // java.lang.String address
        start local 5 // boolean localOnly
         0: .line 53
            aload 0 /* this */
            aload 2 /* context */
            aload 3 /* eventBus */
            aload 4 /* address */
            iconst_0
            invokespecial io.vertx.core.eventbus.impl.HandlerRegistration.<init>:(Lio/vertx/core/impl/ContextInternal;Lio/vertx/core/eventbus/impl/EventBusImpl;Ljava/lang/String;Z)V
         1: .line 47
            aload 0 /* this */
            sipush 1000
            putfield io.vertx.core.eventbus.impl.MessageConsumerImpl.maxBufferedMessages:I
         2: .line 48
            aload 0 /* this */
            new java.util.ArrayDeque
            dup
            bipush 8
            invokespecial java.util.ArrayDeque.<init>:(I)V
            putfield io.vertx.core.eventbus.impl.MessageConsumerImpl.pending:Ljava/util/Queue;
         3: .line 49
            aload 0 /* this */
            ldc 9223372036854775807
            putfield io.vertx.core.eventbus.impl.MessageConsumerImpl.demand:J
         4: .line 54
            aload 0 /* this */
            aload 1 /* vertx */
            putfield io.vertx.core.eventbus.impl.MessageConsumerImpl.vertx:Lio/vertx/core/Vertx;
         5: .line 55
            aload 0 /* this */
            aload 2 /* context */
            putfield io.vertx.core.eventbus.impl.MessageConsumerImpl.context:Lio/vertx/core/impl/ContextInternal;
         6: .line 56
            aload 0 /* this */
            aload 3 /* eventBus */
            putfield io.vertx.core.eventbus.impl.MessageConsumerImpl.eventBus:Lio/vertx/core/eventbus/impl/EventBusImpl;
         7: .line 57
            aload 0 /* this */
            aload 4 /* address */
            putfield io.vertx.core.eventbus.impl.MessageConsumerImpl.address:Ljava/lang/String;
         8: .line 58
            aload 0 /* this */
            iload 5 /* localOnly */
            putfield io.vertx.core.eventbus.impl.MessageConsumerImpl.localOnly:Z
         9: .line 59
            return
        end local 5 // boolean localOnly
        end local 4 // java.lang.String address
        end local 3 // io.vertx.core.eventbus.impl.EventBusImpl eventBus
        end local 2 // io.vertx.core.impl.ContextInternal context
        end local 1 // io.vertx.core.Vertx vertx
        end local 0 // io.vertx.core.eventbus.impl.MessageConsumerImpl this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   10     0       this  Lio/vertx/core/eventbus/impl/MessageConsumerImpl<TT;>;
            0   10     1      vertx  Lio/vertx/core/Vertx;
            0   10     2    context  Lio/vertx/core/impl/ContextInternal;
            0   10     3   eventBus  Lio/vertx/core/eventbus/impl/EventBusImpl;
            0   10     4    address  Ljava/lang/String;
            0   10     5  localOnly  Z
    MethodParameters:
           Name  Flags
      vertx      
      context    
      eventBus   
      address    
      localOnly  

  public io.vertx.core.eventbus.MessageConsumer<T> setMaxBufferedMessages(int);
    descriptor: (I)Lio/vertx/core/eventbus/MessageConsumer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=6, args_size=2
        start local 0 // io.vertx.core.eventbus.impl.MessageConsumerImpl this
        start local 1 // int maxBufferedMessages
         0: .line 63
            iload 1 /* maxBufferedMessages */
            iflt 1
            iconst_1
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_0
      StackMap locals:
      StackMap stack: int
         2: ldc "Max buffered messages cannot be negative"
            invokestatic io.vertx.core.impl.Arguments.require:(ZLjava/lang/String;)V
         3: .line 66
            aload 0 /* this */
            dup
            astore 4
            monitorenter
         4: .line 67
            aload 0 /* this */
            iload 1 /* maxBufferedMessages */
            putfield io.vertx.core.eventbus.impl.MessageConsumerImpl.maxBufferedMessages:I
         5: .line 68
            aload 0 /* this */
            getfield io.vertx.core.eventbus.impl.MessageConsumerImpl.pending:Ljava/util/Queue;
            invokeinterface java.util.Queue.size:()I
            iload 1 /* maxBufferedMessages */
            isub
            istore 5 /* overflow */
        start local 5 // int overflow
         6: .line 69
            iload 5 /* overflow */
            ifgt 9
         7: .line 70
            aload 0 /* this */
            aload 4
            monitorexit
         8: areturn
         9: .line 72
      StackMap locals: io.vertx.core.eventbus.impl.MessageConsumerImpl int top top io.vertx.core.eventbus.impl.MessageConsumerImpl int
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.core.eventbus.impl.MessageConsumerImpl.pending:Ljava/util/Queue;
            invokeinterface java.util.Queue.isEmpty:()Z
            ifeq 12
        10: .line 73
            aload 0 /* this */
            aload 4
            monitorexit
        11: areturn
        12: .line 75
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.core.eventbus.impl.MessageConsumerImpl.discardHandler:Lio/vertx/core/Handler;
            astore 3 /* discardHandler */
        start local 3 // io.vertx.core.Handler discardHandler
        13: .line 76
            new java.util.ArrayList
            dup
            iload 5 /* overflow */
            invokespecial java.util.ArrayList.<init>:(I)V
            astore 2 /* discarded */
        start local 2 // java.util.List discarded
        14: .line 77
            goto 16
        15: .line 78
      StackMap locals: io.vertx.core.eventbus.impl.MessageConsumerImpl int java.util.List io.vertx.core.Handler io.vertx.core.eventbus.impl.MessageConsumerImpl int
      StackMap stack:
            aload 2 /* discarded */
            aload 0 /* this */
            getfield io.vertx.core.eventbus.impl.MessageConsumerImpl.pending:Ljava/util/Queue;
            invokeinterface java.util.Queue.poll:()Ljava/lang/Object;
            checkcast io.vertx.core.eventbus.Message
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        16: .line 77
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.core.eventbus.impl.MessageConsumerImpl.pending:Ljava/util/Queue;
            invokeinterface java.util.Queue.size:()I
            iload 1 /* maxBufferedMessages */
            if_icmpgt 15
        end local 5 // int overflow
        17: .line 66
            aload 4
            monitorexit
        18: goto 21
        end local 3 // io.vertx.core.Handler discardHandler
        end local 2 // java.util.List discarded
      StackMap locals: io.vertx.core.eventbus.impl.MessageConsumerImpl int top top io.vertx.core.eventbus.impl.MessageConsumerImpl
      StackMap stack: java.lang.Throwable
        19: aload 4
            monitorexit
        20: athrow
        start local 2 // java.util.List discarded
        start local 3 // io.vertx.core.Handler discardHandler
        21: .line 81
      StackMap locals: io.vertx.core.eventbus.impl.MessageConsumerImpl int java.util.List io.vertx.core.Handler
      StackMap stack:
            aload 2 /* discarded */
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 5
            goto 26
      StackMap locals: io.vertx.core.eventbus.impl.MessageConsumerImpl int java.util.List io.vertx.core.Handler top java.util.Iterator
      StackMap stack:
        22: aload 5
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast io.vertx.core.eventbus.Message
            astore 4 /* msg */
        start local 4 // io.vertx.core.eventbus.Message msg
        23: .line 82
            aload 3 /* discardHandler */
            ifnull 25
        24: .line 83
            aload 3 /* discardHandler */
            aload 4 /* msg */
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
        25: .line 85
      StackMap locals: io.vertx.core.eventbus.impl.MessageConsumerImpl int java.util.List io.vertx.core.Handler io.vertx.core.eventbus.Message java.util.Iterator
      StackMap stack:
            aload 0 /* this */
            aload 4 /* msg */
            invokevirtual io.vertx.core.eventbus.impl.MessageConsumerImpl.discard:(Lio/vertx/core/eventbus/Message;)V
        end local 4 // io.vertx.core.eventbus.Message msg
        26: .line 81
      StackMap locals: io.vertx.core.eventbus.impl.MessageConsumerImpl int java.util.List io.vertx.core.Handler top java.util.Iterator
      StackMap stack:
            aload 5
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 22
        27: .line 87
            aload 0 /* this */
            areturn
        end local 3 // io.vertx.core.Handler discardHandler
        end local 2 // java.util.List discarded
        end local 1 // int maxBufferedMessages
        end local 0 // io.vertx.core.eventbus.impl.MessageConsumerImpl this
      LocalVariableTable:
        Start  End  Slot                 Name  Signature
            0   28     0                 this  Lio/vertx/core/eventbus/impl/MessageConsumerImpl<TT;>;
            0   28     1  maxBufferedMessages  I
           14   19     2            discarded  Ljava/util/List<Lio/vertx/core/eventbus/Message<TT;>;>;
           21   28     2            discarded  Ljava/util/List<Lio/vertx/core/eventbus/Message<TT;>;>;
           13   19     3       discardHandler  Lio/vertx/core/Handler<Lio/vertx/core/eventbus/Message<TT;>;>;
           21   28     3       discardHandler  Lio/vertx/core/Handler<Lio/vertx/core/eventbus/Message<TT;>;>;
            6   17     5             overflow  I
           23   26     4                  msg  Lio/vertx/core/eventbus/Message<TT;>;
      Exception table:
        from    to  target  type
           4     8      19  any
           9    11      19  any
          12    18      19  any
          19    20      19  any
    Signature: (I)Lio/vertx/core/eventbus/MessageConsumer<TT;>;
    MethodParameters:
                     Name  Flags
      maxBufferedMessages  

  public synchronized int getMaxBufferedMessages();
    descriptor: ()I
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.eventbus.impl.MessageConsumerImpl this
         0: .line 92
            aload 0 /* this */
            getfield io.vertx.core.eventbus.impl.MessageConsumerImpl.maxBufferedMessages:I
            ireturn
        end local 0 // io.vertx.core.eventbus.impl.MessageConsumerImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/eventbus/impl/MessageConsumerImpl<TT;>;

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

  public synchronized void completionHandler(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=2, locals=2, args_size=2
        start local 0 // io.vertx.core.eventbus.impl.MessageConsumerImpl this
        start local 1 // io.vertx.core.Handler handler
         0: .line 102
            aload 1 /* handler */
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;)Ljava/lang/Object;
            pop
         1: .line 103
            aload 0 /* this */
            getfield io.vertx.core.eventbus.impl.MessageConsumerImpl.result:Lio/vertx/core/Promise;
            ifnull 4
         2: .line 104
            aload 0 /* this */
            getfield io.vertx.core.eventbus.impl.MessageConsumerImpl.result:Lio/vertx/core/Promise;
            invokeinterface io.vertx.core.Promise.future:()Lio/vertx/core/Future;
            aload 1 /* handler */
            invokeinterface io.vertx.core.Future.onComplete:(Lio/vertx/core/Handler;)Lio/vertx/core/Future;
            pop
         3: .line 105
            goto 5
         4: .line 106
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* handler */
            putfield io.vertx.core.eventbus.impl.MessageConsumerImpl.completionHandler:Lio/vertx/core/Handler;
         5: .line 108
      StackMap locals:
      StackMap stack:
            return
        end local 1 // io.vertx.core.Handler handler
        end local 0 // io.vertx.core.eventbus.impl.MessageConsumerImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    6     0     this  Lio/vertx/core/eventbus/impl/MessageConsumerImpl<TT;>;
            0    6     1  handler  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
      handler  

  public synchronized io.vertx.core.Future<java.lang.Void> unregister();
    descriptor: ()Lio/vertx/core/Future;
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=3, locals=5, args_size=1
        start local 0 // io.vertx.core.eventbus.impl.MessageConsumerImpl this
         0: .line 112
            aload 0 /* this */
            aconst_null
            putfield io.vertx.core.eventbus.impl.MessageConsumerImpl.handler:Lio/vertx/core/Handler;
         1: .line 113
            aload 0 /* this */
            getfield io.vertx.core.eventbus.impl.MessageConsumerImpl.endHandler:Lio/vertx/core/Handler;
            ifnull 3
         2: .line 114
            aload 0 /* this */
            getfield io.vertx.core.eventbus.impl.MessageConsumerImpl.endHandler:Lio/vertx/core/Handler;
            aconst_null
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
         3: .line 116
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.core.eventbus.impl.MessageConsumerImpl.pending:Ljava/util/Queue;
            invokeinterface java.util.Queue.size:()I
            ifle 13
         4: .line 117
            aload 0 /* this */
            getfield io.vertx.core.eventbus.impl.MessageConsumerImpl.pending:Ljava/util/Queue;
            astore 1 /* discarded */
        start local 1 // java.util.Queue discarded
         5: .line 118
            aload 0 /* this */
            getfield io.vertx.core.eventbus.impl.MessageConsumerImpl.discardHandler:Lio/vertx/core/Handler;
            astore 2 /* handler */
        start local 2 // io.vertx.core.Handler handler
         6: .line 119
            aload 0 /* this */
            new java.util.ArrayDeque
            dup
            invokespecial java.util.ArrayDeque.<init>:()V
            putfield io.vertx.core.eventbus.impl.MessageConsumerImpl.pending:Ljava/util/Queue;
         7: .line 120
            aload 1 /* discarded */
            invokeinterface java.util.Queue.iterator:()Ljava/util/Iterator;
            astore 4
            goto 12
      StackMap locals: io.vertx.core.eventbus.impl.MessageConsumerImpl java.util.Queue io.vertx.core.Handler top java.util.Iterator
      StackMap stack:
         8: aload 4
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast io.vertx.core.eventbus.Message
            astore 3 /* msg */
        start local 3 // io.vertx.core.eventbus.Message msg
         9: .line 121
            aload 0 /* this */
            aload 3 /* msg */
            invokevirtual io.vertx.core.eventbus.impl.MessageConsumerImpl.discard:(Lio/vertx/core/eventbus/Message;)V
        10: .line 122
            aload 2 /* handler */
            ifnull 12
        11: .line 123
            aload 0 /* this */
            getfield io.vertx.core.eventbus.impl.MessageConsumerImpl.context:Lio/vertx/core/impl/ContextInternal;
            aload 3 /* msg */
            aload 2 /* handler */
            invokeinterface io.vertx.core.impl.ContextInternal.emit:(Ljava/lang/Object;Lio/vertx/core/Handler;)V
        end local 3 // io.vertx.core.eventbus.Message msg
        12: .line 120
      StackMap locals:
      StackMap stack:
            aload 4
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 8
        end local 2 // io.vertx.core.Handler handler
        end local 1 // java.util.Queue discarded
        13: .line 127
      StackMap locals: io.vertx.core.eventbus.impl.MessageConsumerImpl
      StackMap stack:
            aload 0 /* this */
            aconst_null
            putfield io.vertx.core.eventbus.impl.MessageConsumerImpl.discardHandler:Lio/vertx/core/Handler;
        14: .line 128
            aload 0 /* this */
            invokespecial io.vertx.core.eventbus.impl.HandlerRegistration.unregister:()Lio/vertx/core/Future;
            astore 1 /* fut */
        start local 1 // io.vertx.core.Future fut
        15: .line 130
            aload 0 /* this */
            getfield io.vertx.core.eventbus.impl.MessageConsumerImpl.result:Lio/vertx/core/Promise;
            astore 2 /* res */
        start local 2 // io.vertx.core.Promise res
        16: .line 131
            aload 2 /* res */
            ifnull 19
        17: .line 132
            aload 1 /* fut */
            aload 2 /* res */
            invokedynamic handle(Lio/vertx/core/Promise;)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/MessageConsumerImpl.lambda$0(Lio/vertx/core/Promise;Lio/vertx/core/AsyncResult;)V (6)
                  (Lio/vertx/core/AsyncResult;)V
            invokeinterface io.vertx.core.Future.onComplete:(Lio/vertx/core/Handler;)Lio/vertx/core/Future;
            pop
        18: .line 133
            aload 0 /* this */
            aconst_null
            putfield io.vertx.core.eventbus.impl.MessageConsumerImpl.result:Lio/vertx/core/Promise;
        19: .line 135
      StackMap locals: io.vertx.core.Future io.vertx.core.Promise
      StackMap stack:
            aload 1 /* fut */
            areturn
        end local 2 // io.vertx.core.Promise res
        end local 1 // io.vertx.core.Future fut
        end local 0 // io.vertx.core.eventbus.impl.MessageConsumerImpl this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   20     0       this  Lio/vertx/core/eventbus/impl/MessageConsumerImpl<TT;>;
            5   13     1  discarded  Ljava/util/Queue<Lio/vertx/core/eventbus/Message<TT;>;>;
            6   13     2    handler  Lio/vertx/core/Handler<Lio/vertx/core/eventbus/Message<TT;>;>;
            9   12     3        msg  Lio/vertx/core/eventbus/Message<TT;>;
           15   20     1        fut  Lio/vertx/core/Future<Ljava/lang/Void;>;
           16   20     2        res  Lio/vertx/core/Promise<Ljava/lang/Void;>;
    Signature: ()Lio/vertx/core/Future<Ljava/lang/Void;>;

  protected boolean doReceive(io.vertx.core.eventbus.Message<T>);
    descriptor: (Lio/vertx/core/eventbus/Message;)Z
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=5, locals=4, args_size=2
        start local 0 // io.vertx.core.eventbus.impl.MessageConsumerImpl this
        start local 1 // io.vertx.core.eventbus.Message message
         0: .line 140
            aload 0 /* this */
            dup
            astore 3
            monitorenter
         1: .line 141
            aload 0 /* this */
            getfield io.vertx.core.eventbus.impl.MessageConsumerImpl.handler:Lio/vertx/core/Handler;
            ifnonnull 4
         2: .line 142
            aload 3
            monitorexit
         3: iconst_0
            ireturn
         4: .line 144
      StackMap locals: io.vertx.core.eventbus.impl.MessageConsumerImpl io.vertx.core.eventbus.Message top io.vertx.core.eventbus.impl.MessageConsumerImpl
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.core.eventbus.impl.MessageConsumerImpl.demand:J
            lconst_0
            lcmp
            ifne 16
         5: .line 145
            aload 0 /* this */
            getfield io.vertx.core.eventbus.impl.MessageConsumerImpl.pending:Ljava/util/Queue;
            invokeinterface java.util.Queue.size:()I
            aload 0 /* this */
            getfield io.vertx.core.eventbus.impl.MessageConsumerImpl.maxBufferedMessages:I
            if_icmpge 9
         6: .line 146
            aload 0 /* this */
            getfield io.vertx.core.eventbus.impl.MessageConsumerImpl.pending:Ljava/util/Queue;
            aload 1 /* message */
            invokeinterface java.util.Queue.add:(Ljava/lang/Object;)Z
            pop
         7: .line 147
            aload 3
            monitorexit
         8: iconst_1
            ireturn
         9: .line 149
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* message */
            invokevirtual io.vertx.core.eventbus.impl.MessageConsumerImpl.discard:(Lio/vertx/core/eventbus/Message;)V
        10: .line 150
            aload 0 /* this */
            getfield io.vertx.core.eventbus.impl.MessageConsumerImpl.discardHandler:Lio/vertx/core/Handler;
            ifnull 13
        11: .line 151
            aload 0 /* this */
            getfield io.vertx.core.eventbus.impl.MessageConsumerImpl.discardHandler:Lio/vertx/core/Handler;
            aload 1 /* message */
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
        12: .line 152
            goto 14
        13: .line 153
      StackMap locals:
      StackMap stack:
            getstatic io.vertx.core.eventbus.impl.MessageConsumerImpl.log:Lio/vertx/core/impl/logging/Logger;
            new java.lang.StringBuilder
            dup
            ldc "Discarding message as more than "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield io.vertx.core.eventbus.impl.MessageConsumerImpl.maxBufferedMessages:I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc " buffered in paused consumer. address: "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield io.vertx.core.eventbus.impl.MessageConsumerImpl.address:Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokeinterface io.vertx.core.impl.logging.Logger.warn:(Ljava/lang/Object;)V
        14: .line 156
      StackMap locals:
      StackMap stack:
            aload 3
            monitorexit
        15: iconst_1
            ireturn
        16: .line 158
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.core.eventbus.impl.MessageConsumerImpl.pending:Ljava/util/Queue;
            invokeinterface java.util.Queue.size:()I
            ifle 19
        17: .line 159
            aload 0 /* this */
            getfield io.vertx.core.eventbus.impl.MessageConsumerImpl.pending:Ljava/util/Queue;
            aload 1 /* message */
            invokeinterface java.util.Queue.add:(Ljava/lang/Object;)Z
            pop
        18: .line 160
            aload 0 /* this */
            getfield io.vertx.core.eventbus.impl.MessageConsumerImpl.pending:Ljava/util/Queue;
            invokeinterface java.util.Queue.poll:()Ljava/lang/Object;
            checkcast io.vertx.core.eventbus.Message
            astore 1 /* message */
        19: .line 162
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.core.eventbus.impl.MessageConsumerImpl.demand:J
            ldc 9223372036854775807
            lcmp
            ifeq 21
        20: .line 163
            aload 0 /* this */
            dup
            getfield io.vertx.core.eventbus.impl.MessageConsumerImpl.demand:J
            lconst_1
            lsub
            putfield io.vertx.core.eventbus.impl.MessageConsumerImpl.demand:J
        21: .line 165
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.core.eventbus.impl.MessageConsumerImpl.handler:Lio/vertx/core/Handler;
            astore 2 /* theHandler */
        start local 2 // io.vertx.core.Handler theHandler
        22: .line 140
            aload 3
            monitorexit
        23: goto 26
        end local 2 // io.vertx.core.Handler theHandler
      StackMap locals:
      StackMap stack: java.lang.Throwable
        24: aload 3
            monitorexit
        25: athrow
        start local 2 // io.vertx.core.Handler theHandler
        26: .line 168
      StackMap locals: io.vertx.core.eventbus.impl.MessageConsumerImpl io.vertx.core.eventbus.Message io.vertx.core.Handler
      StackMap stack:
            aload 0 /* this */
            aload 2 /* theHandler */
            aload 1 /* message */
            invokevirtual io.vertx.core.eventbus.impl.MessageConsumerImpl.deliver:(Lio/vertx/core/Handler;Lio/vertx/core/eventbus/Message;)V
        27: .line 169
            iconst_1
            ireturn
        end local 2 // io.vertx.core.Handler theHandler
        end local 1 // io.vertx.core.eventbus.Message message
        end local 0 // io.vertx.core.eventbus.impl.MessageConsumerImpl this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   28     0        this  Lio/vertx/core/eventbus/impl/MessageConsumerImpl<TT;>;
            0   28     1     message  Lio/vertx/core/eventbus/Message<TT;>;
           22   24     2  theHandler  Lio/vertx/core/Handler<Lio/vertx/core/eventbus/Message<TT;>;>;
           26   28     2  theHandler  Lio/vertx/core/Handler<Lio/vertx/core/eventbus/Message<TT;>;>;
      Exception table:
        from    to  target  type
           1     3      24  any
           4     8      24  any
           9    15      24  any
          16    23      24  any
          24    25      24  any
    Signature: (Lio/vertx/core/eventbus/Message<TT;>;)Z
    MethodParameters:
         Name  Flags
      message  

  protected void dispatch(io.vertx.core.eventbus.Message<T>, io.vertx.core.impl.ContextInternal, io.vertx.core.Handler<io.vertx.core.eventbus.Message<T>>);
    descriptor: (Lio/vertx/core/eventbus/Message;Lio/vertx/core/impl/ContextInternal;Lio/vertx/core/Handler;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=4, args_size=4
        start local 0 // io.vertx.core.eventbus.impl.MessageConsumerImpl this
        start local 1 // io.vertx.core.eventbus.Message msg
        start local 2 // io.vertx.core.impl.ContextInternal context
        start local 3 // io.vertx.core.Handler handler
         0: .line 174
            aload 3 /* handler */
            ifnonnull 2
         1: .line 175
            new java.lang.NullPointerException
            dup
            invokespecial java.lang.NullPointerException.<init>:()V
            athrow
         2: .line 177
      StackMap locals:
      StackMap stack:
            aload 2 /* context */
            aload 1 /* msg */
            aload 3 /* handler */
            invokeinterface io.vertx.core.impl.ContextInternal.emit:(Ljava/lang/Object;Lio/vertx/core/Handler;)V
         3: .line 178
            return
        end local 3 // io.vertx.core.Handler handler
        end local 2 // io.vertx.core.impl.ContextInternal context
        end local 1 // io.vertx.core.eventbus.Message msg
        end local 0 // io.vertx.core.eventbus.impl.MessageConsumerImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    4     0     this  Lio/vertx/core/eventbus/impl/MessageConsumerImpl<TT;>;
            0    4     1      msg  Lio/vertx/core/eventbus/Message<TT;>;
            0    4     2  context  Lio/vertx/core/impl/ContextInternal;
            0    4     3  handler  Lio/vertx/core/Handler<Lio/vertx/core/eventbus/Message<TT;>;>;
    Signature: (Lio/vertx/core/eventbus/Message<TT;>;Lio/vertx/core/impl/ContextInternal;Lio/vertx/core/Handler<Lio/vertx/core/eventbus/Message<TT;>;>;)V
    MethodParameters:
         Name  Flags
      msg      
      context  
      handler  

  private void deliver(io.vertx.core.Handler<io.vertx.core.eventbus.Message<T>>, io.vertx.core.eventbus.Message<T>);
    descriptor: (Lio/vertx/core/Handler;Lio/vertx/core/eventbus/Message;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // io.vertx.core.eventbus.impl.MessageConsumerImpl this
        start local 1 // io.vertx.core.Handler theHandler
        start local 2 // io.vertx.core.eventbus.Message message
         0: .line 183
            aload 0 /* this */
            aload 1 /* theHandler */
            aload 2 /* message */
            aload 0 /* this */
            getfield io.vertx.core.eventbus.impl.MessageConsumerImpl.context:Lio/vertx/core/impl/ContextInternal;
            invokeinterface io.vertx.core.impl.ContextInternal.duplicate:()Lio/vertx/core/impl/ContextInternal;
            invokevirtual io.vertx.core.eventbus.impl.MessageConsumerImpl.dispatch:(Lio/vertx/core/Handler;Lio/vertx/core/eventbus/Message;Lio/vertx/core/impl/ContextInternal;)V
         1: .line 184
            aload 0 /* this */
            invokevirtual io.vertx.core.eventbus.impl.MessageConsumerImpl.checkNextTick:()V
         2: .line 185
            return
        end local 2 // io.vertx.core.eventbus.Message message
        end local 1 // io.vertx.core.Handler theHandler
        end local 0 // io.vertx.core.eventbus.impl.MessageConsumerImpl this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    3     0        this  Lio/vertx/core/eventbus/impl/MessageConsumerImpl<TT;>;
            0    3     1  theHandler  Lio/vertx/core/Handler<Lio/vertx/core/eventbus/Message<TT;>;>;
            0    3     2     message  Lio/vertx/core/eventbus/Message<TT;>;
    Signature: (Lio/vertx/core/Handler<Lio/vertx/core/eventbus/Message<TT;>;>;Lio/vertx/core/eventbus/Message<TT;>;)V
    MethodParameters:
            Name  Flags
      theHandler  
      message     

  private synchronized void checkNextTick();
    descriptor: ()V
    flags: (0x0022) ACC_PRIVATE, ACC_SYNCHRONIZED
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // io.vertx.core.eventbus.impl.MessageConsumerImpl this
         0: .line 189
            aload 0 /* this */
            getfield io.vertx.core.eventbus.impl.MessageConsumerImpl.pending:Ljava/util/Queue;
            invokeinterface java.util.Queue.isEmpty:()Z
            ifne 2
            aload 0 /* this */
            getfield io.vertx.core.eventbus.impl.MessageConsumerImpl.demand:J
            lconst_0
            lcmp
            ifle 2
         1: .line 190
            aload 0 /* this */
            getfield io.vertx.core.eventbus.impl.MessageConsumerImpl.context:Lio/vertx/core/impl/ContextInternal;
            invokeinterface io.vertx.core.impl.ContextInternal.nettyEventLoop:()Lio/netty/channel/EventLoop;
            aload 0 /* this */
            invokedynamic run(Lio/vertx/core/eventbus/impl/MessageConsumerImpl;)Ljava/lang/Runnable;
              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:
                  ()V
                  io/vertx/core/eventbus/impl/MessageConsumerImpl.lambda$1()V (7)
                  ()V
            invokeinterface io.netty.channel.EventLoop.execute:(Ljava/lang/Runnable;)V
         2: .line 205
      StackMap locals:
      StackMap stack:
            return
        end local 0 // io.vertx.core.eventbus.impl.MessageConsumerImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/vertx/core/eventbus/impl/MessageConsumerImpl<TT;>;

  public synchronized void discardHandler(io.vertx.core.Handler<io.vertx.core.eventbus.Message<T>>);
    descriptor: (Lio/vertx/core/Handler;)V
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.eventbus.impl.MessageConsumerImpl this
        start local 1 // io.vertx.core.Handler handler
         0: .line 211
            aload 0 /* this */
            aload 1 /* handler */
            putfield io.vertx.core.eventbus.impl.MessageConsumerImpl.discardHandler:Lio/vertx/core/Handler;
         1: .line 212
            return
        end local 1 // io.vertx.core.Handler handler
        end local 0 // io.vertx.core.eventbus.impl.MessageConsumerImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lio/vertx/core/eventbus/impl/MessageConsumerImpl<TT;>;
            0    2     1  handler  Lio/vertx/core/Handler<Lio/vertx/core/eventbus/Message<TT;>;>;
    Signature: (Lio/vertx/core/Handler<Lio/vertx/core/eventbus/Message<TT;>;>;)V
    MethodParameters:
         Name  Flags
      handler  

  public synchronized io.vertx.core.eventbus.MessageConsumer<T> handler(io.vertx.core.Handler<io.vertx.core.eventbus.Message<T>>);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/core/eventbus/MessageConsumer;
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=4, locals=5, args_size=2
        start local 0 // io.vertx.core.eventbus.impl.MessageConsumerImpl this
        start local 1 // io.vertx.core.Handler h
         0: .line 216
            aload 1 /* h */
            ifnull 15
         1: .line 217
            aload 0 /* this */
            dup
            astore 2
            monitorenter
         2: .line 218
            aload 0 /* this */
            aload 1 /* h */
            putfield io.vertx.core.eventbus.impl.MessageConsumerImpl.handler:Lio/vertx/core/Handler;
         3: .line 219
            aload 0 /* this */
            getfield io.vertx.core.eventbus.impl.MessageConsumerImpl.result:Lio/vertx/core/Promise;
            ifnonnull 11
         4: .line 220
            aload 0 /* this */
            getfield io.vertx.core.eventbus.impl.MessageConsumerImpl.context:Lio/vertx/core/impl/ContextInternal;
            invokeinterface io.vertx.core.impl.ContextInternal.promise:()Lio/vertx/core/impl/future/PromiseInternal;
            astore 3 /* p */
        start local 3 // io.vertx.core.Promise p
         5: .line 221
            aload 0 /* this */
            getfield io.vertx.core.eventbus.impl.MessageConsumerImpl.completionHandler:Lio/vertx/core/Handler;
            ifnull 7
         6: .line 222
            aload 3 /* p */
            invokeinterface io.vertx.core.Promise.future:()Lio/vertx/core/Future;
            aload 0 /* this */
            getfield io.vertx.core.eventbus.impl.MessageConsumerImpl.completionHandler:Lio/vertx/core/Handler;
            invokeinterface io.vertx.core.Future.onComplete:(Lio/vertx/core/Handler;)Lio/vertx/core/Future;
            pop
         7: .line 224
      StackMap locals: io.vertx.core.eventbus.impl.MessageConsumerImpl io.vertx.core.Promise
      StackMap stack:
            aload 0 /* this */
            aload 3 /* p */
            putfield io.vertx.core.eventbus.impl.MessageConsumerImpl.result:Lio/vertx/core/Promise;
         8: .line 225
            aload 0 /* this */
            getfield io.vertx.core.eventbus.impl.MessageConsumerImpl.context:Lio/vertx/core/impl/ContextInternal;
            invokeinterface io.vertx.core.impl.ContextInternal.promise:()Lio/vertx/core/impl/future/PromiseInternal;
            astore 4 /* reg */
        start local 4 // io.vertx.core.Promise reg
         9: .line 226
            aload 0 /* this */
            aconst_null
            aload 0 /* this */
            getfield io.vertx.core.eventbus.impl.MessageConsumerImpl.localOnly:Z
            aload 4 /* reg */
            invokevirtual io.vertx.core.eventbus.impl.MessageConsumerImpl.register:(Ljava/lang/String;ZLio/vertx/core/Promise;)V
        10: .line 227
            aload 4 /* reg */
            invokeinterface io.vertx.core.Promise.future:()Lio/vertx/core/Future;
            aload 3 /* p */
            invokedynamic handle(Lio/vertx/core/Promise;)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/MessageConsumerImpl.lambda$2(Lio/vertx/core/Promise;Lio/vertx/core/AsyncResult;)V (6)
                  (Lio/vertx/core/AsyncResult;)V
            invokeinterface io.vertx.core.Future.onComplete:(Lio/vertx/core/Handler;)Lio/vertx/core/Future;
            pop
        end local 4 // io.vertx.core.Promise reg
        end local 3 // io.vertx.core.Promise p
        11: .line 217
      StackMap locals:
      StackMap stack:
            aload 2
            monitorexit
        12: goto 16
      StackMap locals:
      StackMap stack: java.lang.Throwable
        13: aload 2
            monitorexit
        14: athrow
        15: .line 237
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual io.vertx.core.eventbus.impl.MessageConsumerImpl.unregister:()Lio/vertx/core/Future;
            pop
        16: .line 239
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            areturn
        end local 1 // io.vertx.core.Handler h
        end local 0 // io.vertx.core.eventbus.impl.MessageConsumerImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   17     0  this  Lio/vertx/core/eventbus/impl/MessageConsumerImpl<TT;>;
            0   17     1     h  Lio/vertx/core/Handler<Lio/vertx/core/eventbus/Message<TT;>;>;
            5   11     3     p  Lio/vertx/core/Promise<Ljava/lang/Void;>;
            9   11     4   reg  Lio/vertx/core/Promise<Ljava/lang/Void;>;
      Exception table:
        from    to  target  type
           2    12      13  any
          13    14      13  any
    Signature: (Lio/vertx/core/Handler<Lio/vertx/core/eventbus/Message<TT;>;>;)Lio/vertx/core/eventbus/MessageConsumer<TT;>;
    MethodParameters:
      Name  Flags
      h     

  public io.vertx.core.streams.ReadStream<T> bodyStream();
    descriptor: ()Lio/vertx/core/streams/ReadStream;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // io.vertx.core.eventbus.impl.MessageConsumerImpl this
         0: .line 244
            new io.vertx.core.eventbus.impl.BodyReadStream
            dup
            aload 0 /* this */
            invokespecial io.vertx.core.eventbus.impl.BodyReadStream.<init>:(Lio/vertx/core/streams/ReadStream;)V
            areturn
        end local 0 // io.vertx.core.eventbus.impl.MessageConsumerImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/eventbus/impl/MessageConsumerImpl<TT;>;
    Signature: ()Lio/vertx/core/streams/ReadStream<TT;>;

  public synchronized io.vertx.core.eventbus.MessageConsumer<T> pause();
    descriptor: ()Lio/vertx/core/eventbus/MessageConsumer;
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // io.vertx.core.eventbus.impl.MessageConsumerImpl this
         0: .line 249
            aload 0 /* this */
            lconst_0
            putfield io.vertx.core.eventbus.impl.MessageConsumerImpl.demand:J
         1: .line 250
            aload 0 /* this */
            areturn
        end local 0 // io.vertx.core.eventbus.impl.MessageConsumerImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/core/eventbus/impl/MessageConsumerImpl<TT;>;
    Signature: ()Lio/vertx/core/eventbus/MessageConsumer<TT;>;

  public io.vertx.core.eventbus.MessageConsumer<T> resume();
    descriptor: ()Lio/vertx/core/eventbus/MessageConsumer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // io.vertx.core.eventbus.impl.MessageConsumerImpl this
         0: .line 255
            aload 0 /* this */
            ldc 9223372036854775807
            invokevirtual io.vertx.core.eventbus.impl.MessageConsumerImpl.fetch:(J)Lio/vertx/core/eventbus/MessageConsumer;
            areturn
        end local 0 // io.vertx.core.eventbus.impl.MessageConsumerImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/eventbus/impl/MessageConsumerImpl<TT;>;
    Signature: ()Lio/vertx/core/eventbus/MessageConsumer<TT;>;

  public synchronized io.vertx.core.eventbus.MessageConsumer<T> fetch(long);
    descriptor: (J)Lio/vertx/core/eventbus/MessageConsumer;
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // io.vertx.core.eventbus.impl.MessageConsumerImpl this
        start local 1 // long amount
         0: .line 260
            lload 1 /* amount */
            lconst_0
            lcmp
            ifge 2
         1: .line 261
            new java.lang.IllegalArgumentException
            dup
            invokespecial java.lang.IllegalArgumentException.<init>:()V
            athrow
         2: .line 263
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield io.vertx.core.eventbus.impl.MessageConsumerImpl.demand:J
            lload 1 /* amount */
            ladd
            putfield io.vertx.core.eventbus.impl.MessageConsumerImpl.demand:J
         3: .line 264
            aload 0 /* this */
            getfield io.vertx.core.eventbus.impl.MessageConsumerImpl.demand:J
            lconst_0
            lcmp
            ifge 5
         4: .line 265
            aload 0 /* this */
            ldc 9223372036854775807
            putfield io.vertx.core.eventbus.impl.MessageConsumerImpl.demand:J
         5: .line 267
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.core.eventbus.impl.MessageConsumerImpl.demand:J
            lconst_0
            lcmp
            ifle 7
         6: .line 268
            aload 0 /* this */
            invokevirtual io.vertx.core.eventbus.impl.MessageConsumerImpl.checkNextTick:()V
         7: .line 270
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            areturn
        end local 1 // long amount
        end local 0 // io.vertx.core.eventbus.impl.MessageConsumerImpl this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    8     0    this  Lio/vertx/core/eventbus/impl/MessageConsumerImpl<TT;>;
            0    8     1  amount  J
    Signature: (J)Lio/vertx/core/eventbus/MessageConsumer<TT;>;
    MethodParameters:
        Name  Flags
      amount  

  public synchronized io.vertx.core.eventbus.MessageConsumer<T> endHandler(io.vertx.core.Handler<java.lang.Void>);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/core/eventbus/MessageConsumer;
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // io.vertx.core.eventbus.impl.MessageConsumerImpl this
        start local 1 // io.vertx.core.Handler endHandler
         0: .line 275
            aload 1 /* endHandler */
            ifnull 4
         1: .line 277
            aload 0 /* this */
            getfield io.vertx.core.eventbus.impl.MessageConsumerImpl.vertx:Lio/vertx/core/Vertx;
            invokeinterface io.vertx.core.Vertx.getOrCreateContext:()Lio/vertx/core/Context;
            astore 2 /* endCtx */
        start local 2 // io.vertx.core.Context endCtx
         2: .line 278
            aload 0 /* this */
            aload 2 /* endCtx */
            aload 1 /* endHandler */
            invokedynamic handle(Lio/vertx/core/Context;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/MessageConsumerImpl.lambda$3(Lio/vertx/core/Context;Lio/vertx/core/Handler;Ljava/lang/Void;)V (6)
                  (Ljava/lang/Void;)V
            putfield io.vertx.core.eventbus.impl.MessageConsumerImpl.endHandler:Lio/vertx/core/Handler;
        end local 2 // io.vertx.core.Context endCtx
         3: .line 279
            goto 5
         4: .line 280
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aconst_null
            putfield io.vertx.core.eventbus.impl.MessageConsumerImpl.endHandler:Lio/vertx/core/Handler;
         5: .line 282
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            areturn
        end local 1 // io.vertx.core.Handler endHandler
        end local 0 // io.vertx.core.eventbus.impl.MessageConsumerImpl this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    6     0        this  Lio/vertx/core/eventbus/impl/MessageConsumerImpl<TT;>;
            0    6     1  endHandler  Lio/vertx/core/Handler<Ljava/lang/Void;>;
            2    3     2      endCtx  Lio/vertx/core/Context;
    Signature: (Lio/vertx/core/Handler<Ljava/lang/Void;>;)Lio/vertx/core/eventbus/MessageConsumer<TT;>;
    MethodParameters:
            Name  Flags
      endHandler  

  public synchronized io.vertx.core.eventbus.MessageConsumer<T> exceptionHandler(io.vertx.core.Handler<java.lang.Throwable>);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/core/eventbus/MessageConsumer;
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // io.vertx.core.eventbus.impl.MessageConsumerImpl this
        start local 1 // io.vertx.core.Handler handler
         0: .line 287
            aload 0 /* this */
            areturn
        end local 1 // io.vertx.core.Handler handler
        end local 0 // io.vertx.core.eventbus.impl.MessageConsumerImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lio/vertx/core/eventbus/impl/MessageConsumerImpl<TT;>;
            0    1     1  handler  Lio/vertx/core/Handler<Ljava/lang/Throwable;>;
    Signature: (Lio/vertx/core/Handler<Ljava/lang/Throwable;>;)Lio/vertx/core/eventbus/MessageConsumer<TT;>;
    MethodParameters:
         Name  Flags
      handler  

  public synchronized io.vertx.core.Handler<io.vertx.core.eventbus.Message<T>> getHandler();
    descriptor: ()Lio/vertx/core/Handler;
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.eventbus.impl.MessageConsumerImpl this
         0: .line 291
            aload 0 /* this */
            getfield io.vertx.core.eventbus.impl.MessageConsumerImpl.handler:Lio/vertx/core/Handler;
            areturn
        end local 0 // io.vertx.core.eventbus.impl.MessageConsumerImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/eventbus/impl/MessageConsumerImpl<TT;>;
    Signature: ()Lio/vertx/core/Handler<Lio/vertx/core/eventbus/Message<TT;>;>;

  public io.vertx.core.streams.ReadStream pause();
    descriptor: ()Lio/vertx/core/streams/ReadStream;
    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.MessageConsumerImpl.pause:()Lio/vertx/core/eventbus/MessageConsumer;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.streams.ReadStream handler(io.vertx.core.Handler);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/core/streams/ReadStream;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast io.vertx.core.Handler
            invokevirtual io.vertx.core.eventbus.impl.MessageConsumerImpl.handler:(Lio/vertx/core/Handler;)Lio/vertx/core/eventbus/MessageConsumer;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.streams.ReadStream endHandler(io.vertx.core.Handler);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/core/streams/ReadStream;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.vertx.core.eventbus.impl.MessageConsumerImpl.endHandler:(Lio/vertx/core/Handler;)Lio/vertx/core/eventbus/MessageConsumer;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.streams.ReadStream resume();
    descriptor: ()Lio/vertx/core/streams/ReadStream;
    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.MessageConsumerImpl.resume:()Lio/vertx/core/eventbus/MessageConsumer;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.streams.ReadStream fetch(long);
    descriptor: (J)Lio/vertx/core/streams/ReadStream;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=2
         0: .line 1
            aload 0
            lload 1
            invokevirtual io.vertx.core.eventbus.impl.MessageConsumerImpl.fetch:(J)Lio/vertx/core/eventbus/MessageConsumer;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.streams.StreamBase exceptionHandler(io.vertx.core.Handler);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/core/streams/StreamBase;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.vertx.core.eventbus.impl.MessageConsumerImpl.exceptionHandler:(Lio/vertx/core/Handler;)Lio/vertx/core/eventbus/MessageConsumer;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.streams.ReadStream exceptionHandler(io.vertx.core.Handler);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/core/streams/ReadStream;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.vertx.core.eventbus.impl.MessageConsumerImpl.exceptionHandler:(Lio/vertx/core/Handler;)Lio/vertx/core/eventbus/MessageConsumer;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  private static void lambda$0(io.vertx.core.Promise, io.vertx.core.AsyncResult);
    descriptor: (Lio/vertx/core/Promise;Lio/vertx/core/AsyncResult;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
        start local 1 // io.vertx.core.AsyncResult ar
         0: .line 132
            aload 0
            ldc "Consumer unregistered before registration completed"
            invokeinterface io.vertx.core.Promise.tryFail:(Ljava/lang/String;)Z
            return
        end local 1 // io.vertx.core.AsyncResult ar
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     1    ar  Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;

  private void lambda$1();
    descriptor: ()V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=5, locals=4, args_size=1
        start local 0 // io.vertx.core.eventbus.impl.MessageConsumerImpl this
         0: .line 193
            aload 0 /* this */
            dup
            astore 3
            monitorenter
         1: .line 194
            aload 0 /* this */
            getfield io.vertx.core.eventbus.impl.MessageConsumerImpl.demand:J
            lconst_0
            lcmp
            ifeq 3
            aload 0 /* this */
            getfield io.vertx.core.eventbus.impl.MessageConsumerImpl.pending:Ljava/util/Queue;
            invokeinterface java.util.Queue.poll:()Ljava/lang/Object;
            checkcast io.vertx.core.eventbus.Message
            dup
            astore 1 /* message */
        start local 1 // io.vertx.core.eventbus.Message message
         2: ifnonnull 5
        end local 1 // io.vertx.core.eventbus.Message message
         3: .line 195
      StackMap locals: io.vertx.core.eventbus.impl.MessageConsumerImpl top top io.vertx.core.eventbus.impl.MessageConsumerImpl
      StackMap stack:
            aload 3
            monitorexit
         4: return
        start local 1 // io.vertx.core.eventbus.Message message
         5: .line 197
      StackMap locals: io.vertx.core.eventbus.impl.MessageConsumerImpl io.vertx.core.eventbus.Message top io.vertx.core.eventbus.impl.MessageConsumerImpl
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.core.eventbus.impl.MessageConsumerImpl.demand:J
            ldc 9223372036854775807
            lcmp
            ifeq 7
         6: .line 198
            aload 0 /* this */
            dup
            getfield io.vertx.core.eventbus.impl.MessageConsumerImpl.demand:J
            lconst_1
            lsub
            putfield io.vertx.core.eventbus.impl.MessageConsumerImpl.demand:J
         7: .line 200
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.core.eventbus.impl.MessageConsumerImpl.handler:Lio/vertx/core/Handler;
            astore 2 /* theHandler */
        start local 2 // io.vertx.core.Handler theHandler
         8: .line 193
            aload 3
            monitorexit
         9: goto 12
        end local 2 // io.vertx.core.Handler theHandler
        end local 1 // io.vertx.core.eventbus.Message message
      StackMap locals: io.vertx.core.eventbus.impl.MessageConsumerImpl top top io.vertx.core.eventbus.impl.MessageConsumerImpl
      StackMap stack: java.lang.Throwable
        10: aload 3
            monitorexit
        11: athrow
        start local 1 // io.vertx.core.eventbus.Message message
        start local 2 // io.vertx.core.Handler theHandler
        12: .line 202
      StackMap locals: io.vertx.core.eventbus.impl.MessageConsumerImpl io.vertx.core.eventbus.Message io.vertx.core.Handler
      StackMap stack:
            aload 0 /* this */
            aload 2 /* theHandler */
            aload 1 /* message */
            invokevirtual io.vertx.core.eventbus.impl.MessageConsumerImpl.deliver:(Lio/vertx/core/Handler;Lio/vertx/core/eventbus/Message;)V
        end local 2 // io.vertx.core.Handler theHandler
        end local 1 // io.vertx.core.eventbus.Message message
        13: .line 203
            return
        end local 0 // io.vertx.core.eventbus.impl.MessageConsumerImpl this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   14     0        this  Lio/vertx/core/eventbus/impl/MessageConsumerImpl<TT;>;
            2    3     1     message  Lio/vertx/core/eventbus/Message<TT;>;
            5   10     1     message  Lio/vertx/core/eventbus/Message<TT;>;
           12   13     1     message  Lio/vertx/core/eventbus/Message<TT;>;
            8   10     2  theHandler  Lio/vertx/core/Handler<Lio/vertx/core/eventbus/Message<TT;>;>;
           12   13     2  theHandler  Lio/vertx/core/Handler<Lio/vertx/core/eventbus/Message<TT;>;>;
      Exception table:
        from    to  target  type
           1     4      10  any
           5     9      10  any
          10    11      10  any

  private static void lambda$2(io.vertx.core.Promise, io.vertx.core.AsyncResult);
    descriptor: (Lio/vertx/core/Promise;Lio/vertx/core/AsyncResult;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
        start local 1 // io.vertx.core.AsyncResult ar
         0: .line 228
            aload 1 /* ar */
            invokeinterface io.vertx.core.AsyncResult.succeeded:()Z
            ifeq 3
         1: .line 229
            aload 0
            invokeinterface io.vertx.core.Promise.tryComplete:()Z
            pop
         2: .line 230
            goto 4
         3: .line 231
      StackMap locals:
      StackMap stack:
            aload 0
            aload 1 /* ar */
            invokeinterface io.vertx.core.AsyncResult.cause:()Ljava/lang/Throwable;
            invokeinterface io.vertx.core.Promise.tryFail:(Ljava/lang/Throwable;)Z
            pop
         4: .line 233
      StackMap locals:
      StackMap stack:
            return
        end local 1 // io.vertx.core.AsyncResult ar
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     1    ar  Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;

  private static void lambda$3(io.vertx.core.Context, io.vertx.core.Handler, java.lang.Void);
    descriptor: (Lio/vertx/core/Context;Lio/vertx/core/Handler;Ljava/lang/Void;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=2, locals=3, args_size=3
        start local 2 // java.lang.Void v1
         0: .line 278
            aload 0
            aload 1
            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/MessageConsumerImpl.lambda$4(Lio/vertx/core/Handler;Ljava/lang/Void;)V (6)
                  (Ljava/lang/Void;)V
            invokeinterface io.vertx.core.Context.runOnContext:(Lio/vertx/core/Handler;)V
            return
        end local 2 // java.lang.Void v1
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     2    v1  Ljava/lang/Void;

  private static void lambda$4(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 v2
         0: .line 278
            aload 0
            aconst_null
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
            return
        end local 1 // java.lang.Void v2
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     1    v2  Ljava/lang/Void;
}
Signature: <T:Ljava/lang/Object;>Lio/vertx/core/eventbus/impl/HandlerRegistration<TT;>;Lio/vertx/core/eventbus/MessageConsumer<TT;>;
SourceFile: "MessageConsumerImpl.java"
InnerClasses:
  public final Lookup = java.lang.invoke.MethodHandles$Lookup of java.lang.invoke.MethodHandles