public class io.vertx.core.streams.impl.InboundBuffer<E>
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: io.vertx.core.streams.impl.InboundBuffer
  super_class: java.lang.Object
{
  public static final java.lang.Object END_SENTINEL;
    descriptor: Ljava/lang/Object;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL

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

  private final java.util.ArrayDeque<E> pending;
    descriptor: Ljava/util/ArrayDeque;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/ArrayDeque<TE;>;

  private final long highWaterMark;
    descriptor: J
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

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

  private io.vertx.core.Handler<E> handler;
    descriptor: Lio/vertx/core/Handler;
    flags: (0x0002) ACC_PRIVATE
    Signature: Lio/vertx/core/Handler<TE;>;

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

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

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

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

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

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=0, args_size=0
         0: .line 71
            new java.lang.Object
            dup
            invokespecial java.lang.Object.<init>:()V
            putstatic io.vertx.core.streams.impl.InboundBuffer.END_SENTINEL:Ljava/lang/Object;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>(io.vertx.core.Context);
    descriptor: (Lio/vertx/core/Context;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // io.vertx.core.streams.impl.InboundBuffer this
        start local 1 // io.vertx.core.Context context
         0: .line 85
            aload 0 /* this */
            aload 1 /* context */
            ldc 16
            invokespecial io.vertx.core.streams.impl.InboundBuffer.<init>:(Lio/vertx/core/Context;J)V
         1: .line 86
            return
        end local 1 // io.vertx.core.Context context
        end local 0 // io.vertx.core.streams.impl.InboundBuffer this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lio/vertx/core/streams/impl/InboundBuffer<TE;>;
            0    2     1  context  Lio/vertx/core/Context;
    MethodParameters:
         Name  Flags
      context  

  public void <init>(io.vertx.core.Context, long);
    descriptor: (Lio/vertx/core/Context;J)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // io.vertx.core.streams.impl.InboundBuffer this
        start local 1 // io.vertx.core.Context context
        start local 2 // long highWaterMark
         0: .line 88
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 89
            aload 1 /* context */
            ldc "context must not be null"
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            pop
         2: .line 90
            lload 2 /* highWaterMark */
            lconst_0
            lcmp
            iflt 3
            iconst_1
            goto 4
      StackMap locals: io.vertx.core.streams.impl.InboundBuffer io.vertx.core.Context long
      StackMap stack:
         3: iconst_0
      StackMap locals:
      StackMap stack: int
         4: new java.lang.StringBuilder
            dup
            ldc "highWaterMark "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            lload 2 /* highWaterMark */
            invokevirtual java.lang.StringBuilder.append:(J)Ljava/lang/StringBuilder;
            ldc " >= 0"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokestatic io.vertx.core.impl.Arguments.require:(ZLjava/lang/String;)V
         5: .line 91
            aload 0 /* this */
            aload 1 /* context */
            putfield io.vertx.core.streams.impl.InboundBuffer.context:Lio/vertx/core/Context;
         6: .line 92
            aload 0 /* this */
            lload 2 /* highWaterMark */
            putfield io.vertx.core.streams.impl.InboundBuffer.highWaterMark:J
         7: .line 93
            aload 0 /* this */
            ldc 9223372036854775807
            putfield io.vertx.core.streams.impl.InboundBuffer.demand:J
         8: .line 94
            aload 0 /* this */
            new java.util.ArrayDeque
            dup
            invokespecial java.util.ArrayDeque.<init>:()V
            putfield io.vertx.core.streams.impl.InboundBuffer.pending:Ljava/util/ArrayDeque;
         9: .line 95
            return
        end local 2 // long highWaterMark
        end local 1 // io.vertx.core.Context context
        end local 0 // io.vertx.core.streams.impl.InboundBuffer this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   10     0           this  Lio/vertx/core/streams/impl/InboundBuffer<TE;>;
            0   10     1        context  Lio/vertx/core/Context;
            0   10     2  highWaterMark  J
    MethodParameters:
               Name  Flags
      context        
      highWaterMark  

  private void checkContext();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // io.vertx.core.streams.impl.InboundBuffer this
         0: .line 98
            aload 0 /* this */
            getfield io.vertx.core.streams.impl.InboundBuffer.context:Lio/vertx/core/Context;
            invokestatic io.vertx.core.Vertx.currentContext:()Lio/vertx/core/Context;
            if_acmpeq 2
         1: .line 99
            new java.lang.IllegalStateException
            dup
            ldc "This operation must be called from the context thread"
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 101
      StackMap locals:
      StackMap stack:
            return
        end local 0 // io.vertx.core.streams.impl.InboundBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/vertx/core/streams/impl/InboundBuffer<TE;>;

  public boolean write();
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=2
        start local 0 // io.vertx.core.streams.impl.InboundBuffer this
        start local 1 // java.lang.Object element
         0: .line 111
            aload 0 /* this */
            invokevirtual io.vertx.core.streams.impl.InboundBuffer.checkContext:()V
         1: .line 113
            aload 0 /* this */
            dup
            astore 3
            monitorenter
         2: .line 114
            aload 0 /* this */
            getfield io.vertx.core.streams.impl.InboundBuffer.demand:J
            lconst_0
            lcmp
            ifeq 3
            aload 0 /* this */
            getfield io.vertx.core.streams.impl.InboundBuffer.emitting:Z
            ifeq 6
         3: .line 115
      StackMap locals: io.vertx.core.streams.impl.InboundBuffer java.lang.Object top io.vertx.core.streams.impl.InboundBuffer
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.core.streams.impl.InboundBuffer.pending:Ljava/util/ArrayDeque;
            aload 1 /* element */
            invokevirtual java.util.ArrayDeque.add:(Ljava/lang/Object;)Z
            pop
         4: .line 116
            aload 0 /* this */
            invokevirtual io.vertx.core.streams.impl.InboundBuffer.checkWritable:()Z
            aload 3
            monitorexit
         5: ireturn
         6: .line 118
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.core.streams.impl.InboundBuffer.demand:J
            ldc 9223372036854775807
            lcmp
            ifeq 8
         7: .line 119
            aload 0 /* this */
            dup
            getfield io.vertx.core.streams.impl.InboundBuffer.demand:J
            lconst_1
            lsub
            putfield io.vertx.core.streams.impl.InboundBuffer.demand:J
         8: .line 121
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_1
            putfield io.vertx.core.streams.impl.InboundBuffer.emitting:Z
         9: .line 122
            aload 0 /* this */
            getfield io.vertx.core.streams.impl.InboundBuffer.handler:Lio/vertx/core/Handler;
            astore 2 /* handler */
        start local 2 // io.vertx.core.Handler handler
        10: .line 113
            aload 3
            monitorexit
        11: goto 14
        end local 2 // io.vertx.core.Handler handler
      StackMap locals:
      StackMap stack: java.lang.Throwable
        12: aload 3
            monitorexit
        13: athrow
        start local 2 // io.vertx.core.Handler handler
        14: .line 125
      StackMap locals: io.vertx.core.streams.impl.InboundBuffer java.lang.Object io.vertx.core.Handler
      StackMap stack:
            aload 0 /* this */
            aload 2 /* handler */
            aload 1 /* element */
            invokevirtual io.vertx.core.streams.impl.InboundBuffer.handleEvent:(Lio/vertx/core/Handler;Ljava/lang/Object;)V
        15: .line 126
            aload 0 /* this */
            invokevirtual io.vertx.core.streams.impl.InboundBuffer.emitPending:()Z
            ireturn
        end local 2 // io.vertx.core.Handler handler
        end local 1 // java.lang.Object element
        end local 0 // io.vertx.core.streams.impl.InboundBuffer this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   16     0     this  Lio/vertx/core/streams/impl/InboundBuffer<TE;>;
            0   16     1  element  TE;
           10   12     2  handler  Lio/vertx/core/Handler<TE;>;
           14   16     2  handler  Lio/vertx/core/Handler<TE;>;
      Exception table:
        from    to  target  type
           2     5      12  any
           6    11      12  any
          12    13      12  any
    Signature: (TE;)Z
    MethodParameters:
         Name  Flags
      element  

  private boolean checkWritable();
    descriptor: ()Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=4, args_size=1
        start local 0 // io.vertx.core.streams.impl.InboundBuffer this
         0: .line 130
            aload 0 /* this */
            getfield io.vertx.core.streams.impl.InboundBuffer.demand:J
            ldc 9223372036854775807
            lcmp
            ifne 2
         1: .line 131
            iconst_1
            ireturn
         2: .line 133
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.core.streams.impl.InboundBuffer.pending:Ljava/util/ArrayDeque;
            invokevirtual java.util.ArrayDeque.size:()I
            i2l
            aload 0 /* this */
            getfield io.vertx.core.streams.impl.InboundBuffer.demand:J
            lsub
            lstore 1 /* actual */
        start local 1 // long actual
         3: .line 134
            lload 1 /* actual */
            aload 0 /* this */
            getfield io.vertx.core.streams.impl.InboundBuffer.highWaterMark:J
            lcmp
            ifge 4
            iconst_1
            goto 5
      StackMap locals: long
      StackMap stack:
         4: iconst_0
      StackMap locals:
      StackMap stack: int
         5: istore 3 /* writable */
        start local 3 // boolean writable
         6: .line 135
            aload 0 /* this */
            dup
            getfield io.vertx.core.streams.impl.InboundBuffer.overflow:Z
            iload 3 /* writable */
            ifeq 7
            iconst_0
            goto 8
      StackMap locals: io.vertx.core.streams.impl.InboundBuffer long int
      StackMap stack: io.vertx.core.streams.impl.InboundBuffer int
         7: iconst_1
      StackMap locals: io.vertx.core.streams.impl.InboundBuffer long int
      StackMap stack: io.vertx.core.streams.impl.InboundBuffer int int
         8: ior
            putfield io.vertx.core.streams.impl.InboundBuffer.overflow:Z
         9: .line 136
            iload 3 /* writable */
            ireturn
        end local 3 // boolean writable
        end local 1 // long actual
        end local 0 // io.vertx.core.streams.impl.InboundBuffer this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   10     0      this  Lio/vertx/core/streams/impl/InboundBuffer<TE;>;
            3   10     1    actual  J
            6   10     3  writable  Z

  public boolean write(java.lang.Iterable<E>);
    descriptor: (Ljava/lang/Iterable;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=2
        start local 0 // io.vertx.core.streams.impl.InboundBuffer this
        start local 1 // java.lang.Iterable elements
         0: .line 148
            aload 0 /* this */
            invokevirtual io.vertx.core.streams.impl.InboundBuffer.checkContext:()V
         1: .line 149
            aload 0 /* this */
            dup
            astore 2
            monitorenter
         2: .line 150
            aload 1 /* elements */
            invokeinterface java.lang.Iterable.iterator:()Ljava/util/Iterator;
            astore 4
            goto 5
      StackMap locals: io.vertx.core.streams.impl.InboundBuffer java.lang.Iterable io.vertx.core.streams.impl.InboundBuffer top java.util.Iterator
      StackMap stack:
         3: aload 4
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.lang.Object
            astore 3 /* element */
        start local 3 // java.lang.Object element
         4: .line 151
            aload 0 /* this */
            getfield io.vertx.core.streams.impl.InboundBuffer.pending:Ljava/util/ArrayDeque;
            aload 3 /* element */
            invokevirtual java.util.ArrayDeque.add:(Ljava/lang/Object;)Z
            pop
        end local 3 // java.lang.Object element
         5: .line 150
      StackMap locals:
      StackMap stack:
            aload 4
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 3
         6: .line 153
            aload 0 /* this */
            getfield io.vertx.core.streams.impl.InboundBuffer.demand:J
            lconst_0
            lcmp
            ifeq 7
            aload 0 /* this */
            getfield io.vertx.core.streams.impl.InboundBuffer.emitting:Z
            ifeq 9
         7: .line 154
      StackMap locals: io.vertx.core.streams.impl.InboundBuffer java.lang.Iterable io.vertx.core.streams.impl.InboundBuffer
      StackMap stack:
            aload 0 /* this */
            invokevirtual io.vertx.core.streams.impl.InboundBuffer.checkWritable:()Z
            aload 2
            monitorexit
         8: ireturn
         9: .line 156
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_1
            putfield io.vertx.core.streams.impl.InboundBuffer.emitting:Z
        10: .line 149
            aload 2
            monitorexit
        11: goto 14
      StackMap locals:
      StackMap stack: java.lang.Throwable
        12: aload 2
            monitorexit
        13: athrow
        14: .line 159
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual io.vertx.core.streams.impl.InboundBuffer.emitPending:()Z
            ireturn
        end local 1 // java.lang.Iterable elements
        end local 0 // io.vertx.core.streams.impl.InboundBuffer this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   15     0      this  Lio/vertx/core/streams/impl/InboundBuffer<TE;>;
            0   15     1  elements  Ljava/lang/Iterable<TE;>;
            4    5     3   element  TE;
      Exception table:
        from    to  target  type
           2     8      12  any
           9    11      12  any
          12    13      12  any
    Signature: (Ljava/lang/Iterable<TE;>;)Z
    MethodParameters:
          Name  Flags
      elements  

  private boolean emitPending();
    descriptor: ()Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=6, args_size=1
        start local 0 // io.vertx.core.streams.impl.InboundBuffer this
         0: .line 166
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            astore 3
            monitorenter
         1: .line 167
            aload 0 /* this */
            getfield io.vertx.core.streams.impl.InboundBuffer.pending:Ljava/util/ArrayDeque;
            invokevirtual java.util.ArrayDeque.size:()I
            istore 4 /* size */
        start local 4 // int size
         2: .line 168
            aload 0 /* this */
            getfield io.vertx.core.streams.impl.InboundBuffer.demand:J
            lconst_0
            lcmp
            ifne 12
         3: .line 169
            aload 0 /* this */
            iconst_0
            putfield io.vertx.core.streams.impl.InboundBuffer.emitting:Z
         4: .line 170
            iload 4 /* size */
            i2l
            aload 0 /* this */
            getfield io.vertx.core.streams.impl.InboundBuffer.highWaterMark:J
            lcmp
            ifge 5
            iconst_1
            goto 6
      StackMap locals: io.vertx.core.streams.impl.InboundBuffer top top io.vertx.core.streams.impl.InboundBuffer int
      StackMap stack:
         5: iconst_0
      StackMap locals:
      StackMap stack: int
         6: istore 5 /* writable */
        start local 5 // boolean writable
         7: .line 171
            aload 0 /* this */
            dup
            getfield io.vertx.core.streams.impl.InboundBuffer.overflow:Z
            iload 5 /* writable */
            ifeq 8
            iconst_0
            goto 9
      StackMap locals: io.vertx.core.streams.impl.InboundBuffer top top io.vertx.core.streams.impl.InboundBuffer int int
      StackMap stack: io.vertx.core.streams.impl.InboundBuffer int
         8: iconst_1
      StackMap locals: io.vertx.core.streams.impl.InboundBuffer top top io.vertx.core.streams.impl.InboundBuffer int int
      StackMap stack: io.vertx.core.streams.impl.InboundBuffer int int
         9: ior
            putfield io.vertx.core.streams.impl.InboundBuffer.overflow:Z
        10: .line 172
            iload 5 /* writable */
            aload 3
            monitorexit
        11: ireturn
        end local 5 // boolean writable
        12: .line 173
      StackMap locals:
      StackMap stack:
            iload 4 /* size */
            ifne 16
        13: .line 174
            aload 0 /* this */
            iconst_0
            putfield io.vertx.core.streams.impl.InboundBuffer.emitting:Z
        14: .line 175
            aload 3
            monitorexit
        15: iconst_1
            ireturn
        16: .line 177
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.core.streams.impl.InboundBuffer.demand:J
            ldc 9223372036854775807
            lcmp
            ifeq 18
        17: .line 178
            aload 0 /* this */
            dup
            getfield io.vertx.core.streams.impl.InboundBuffer.demand:J
            lconst_1
            lsub
            putfield io.vertx.core.streams.impl.InboundBuffer.demand:J
        18: .line 180
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.core.streams.impl.InboundBuffer.pending:Ljava/util/ArrayDeque;
            invokevirtual java.util.ArrayDeque.poll:()Ljava/lang/Object;
            astore 1 /* element */
        start local 1 // java.lang.Object element
        19: .line 181
            aload 0 /* this */
            getfield io.vertx.core.streams.impl.InboundBuffer.handler:Lio/vertx/core/Handler;
            astore 2 /* h */
        end local 4 // int size
        start local 2 // io.vertx.core.Handler h
        20: .line 166
            aload 3
            monitorexit
        21: goto 24
        end local 2 // io.vertx.core.Handler h
        end local 1 // java.lang.Object element
      StackMap locals: io.vertx.core.streams.impl.InboundBuffer top top io.vertx.core.streams.impl.InboundBuffer
      StackMap stack: java.lang.Throwable
        22: aload 3
            monitorexit
        23: athrow
        start local 1 // java.lang.Object element
        start local 2 // io.vertx.core.Handler h
        24: .line 183
      StackMap locals: io.vertx.core.streams.impl.InboundBuffer java.lang.Object io.vertx.core.Handler
      StackMap stack:
            aload 0 /* this */
            aload 2 /* h */
            aload 1 /* element */
            invokevirtual io.vertx.core.streams.impl.InboundBuffer.handleEvent:(Lio/vertx/core/Handler;Ljava/lang/Object;)V
        end local 2 // io.vertx.core.Handler h
        end local 1 // java.lang.Object element
        25: .line 165
            goto 0
        end local 0 // io.vertx.core.streams.impl.InboundBuffer this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   26     0      this  Lio/vertx/core/streams/impl/InboundBuffer<TE;>;
           19   22     1   element  TE;
           24   25     1   element  TE;
           20   22     2         h  Lio/vertx/core/Handler<TE;>;
           24   25     2         h  Lio/vertx/core/Handler<TE;>;
            2   20     4      size  I
            7   12     5  writable  Z
      Exception table:
        from    to  target  type
           1    11      22  any
          12    15      22  any
          16    21      22  any
          22    23      22  any

  private void drain();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=8, args_size=1
        start local 0 // io.vertx.core.streams.impl.InboundBuffer this
         0: .line 193
            iconst_0
            istore 1 /* emitted */
        start local 1 // int emitted
         1: .line 199
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            dup
            astore 6
            monitorenter
         2: .line 200
            aload 0 /* this */
            getfield io.vertx.core.streams.impl.InboundBuffer.pending:Ljava/util/ArrayDeque;
            invokevirtual java.util.ArrayDeque.size:()I
            istore 7 /* size */
        start local 7 // int size
         3: .line 201
            iload 7 /* size */
            ifne 15
         4: .line 202
            aload 0 /* this */
            iconst_0
            putfield io.vertx.core.streams.impl.InboundBuffer.emitting:Z
         5: .line 203
            aload 0 /* this */
            getfield io.vertx.core.streams.impl.InboundBuffer.overflow:Z
            ifeq 9
         6: .line 204
            aload 0 /* this */
            iconst_0
            putfield io.vertx.core.streams.impl.InboundBuffer.overflow:Z
         7: .line 205
            aload 0 /* this */
            getfield io.vertx.core.streams.impl.InboundBuffer.drainHandler:Lio/vertx/core/Handler;
            astore 2 /* drainHandler */
        start local 2 // io.vertx.core.Handler drainHandler
         8: .line 206
            goto 10
        end local 2 // io.vertx.core.Handler drainHandler
         9: .line 207
      StackMap locals: io.vertx.core.streams.impl.InboundBuffer int top top top top io.vertx.core.streams.impl.InboundBuffer int
      StackMap stack:
            aconst_null
            astore 2 /* drainHandler */
        start local 2 // io.vertx.core.Handler drainHandler
        10: .line 209
      StackMap locals: io.vertx.core.streams.impl.InboundBuffer int io.vertx.core.Handler top top top io.vertx.core.streams.impl.InboundBuffer int
      StackMap stack:
            iload 1 /* emitted */
            ifle 11
            aload 0 /* this */
            getfield io.vertx.core.streams.impl.InboundBuffer.emptyHandler:Lio/vertx/core/Handler;
            goto 12
      StackMap locals:
      StackMap stack:
        11: aconst_null
      StackMap locals:
      StackMap stack: io.vertx.core.Handler
        12: astore 3 /* emptyHandler */
        start local 3 // io.vertx.core.Handler emptyHandler
        13: .line 210
            aload 6
            monitorexit
        14: goto 30
        end local 3 // io.vertx.core.Handler emptyHandler
        end local 2 // io.vertx.core.Handler drainHandler
        15: .line 211
      StackMap locals: io.vertx.core.streams.impl.InboundBuffer int top top top top io.vertx.core.streams.impl.InboundBuffer int
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.core.streams.impl.InboundBuffer.demand:J
            lconst_0
            lcmp
            ifne 19
        16: .line 212
            aload 0 /* this */
            iconst_0
            putfield io.vertx.core.streams.impl.InboundBuffer.emitting:Z
        17: .line 213
            aload 6
            monitorexit
        18: return
        19: .line 215
      StackMap locals:
      StackMap stack:
            iinc 1 /* emitted */ 1
        20: .line 216
            aload 0 /* this */
            getfield io.vertx.core.streams.impl.InboundBuffer.demand:J
            ldc 9223372036854775807
            lcmp
            ifeq 22
        21: .line 217
            aload 0 /* this */
            dup
            getfield io.vertx.core.streams.impl.InboundBuffer.demand:J
            lconst_1
            lsub
            putfield io.vertx.core.streams.impl.InboundBuffer.demand:J
        22: .line 219
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.core.streams.impl.InboundBuffer.pending:Ljava/util/ArrayDeque;
            invokevirtual java.util.ArrayDeque.poll:()Ljava/lang/Object;
            astore 4 /* element */
        start local 4 // java.lang.Object element
        23: .line 220
            aload 0 /* this */
            getfield io.vertx.core.streams.impl.InboundBuffer.handler:Lio/vertx/core/Handler;
            astore 5 /* handler */
        end local 7 // int size
        start local 5 // io.vertx.core.Handler handler
        24: .line 199
            aload 6
            monitorexit
        25: goto 28
        end local 5 // io.vertx.core.Handler handler
        end local 4 // java.lang.Object element
      StackMap locals: io.vertx.core.streams.impl.InboundBuffer int top top top top io.vertx.core.streams.impl.InboundBuffer
      StackMap stack: java.lang.Throwable
        26: aload 6
            monitorexit
        27: athrow
        start local 4 // java.lang.Object element
        start local 5 // io.vertx.core.Handler handler
        28: .line 222
      StackMap locals: io.vertx.core.streams.impl.InboundBuffer int top top java.lang.Object io.vertx.core.Handler
      StackMap stack:
            aload 0 /* this */
            aload 5 /* handler */
            aload 4 /* element */
            invokevirtual io.vertx.core.streams.impl.InboundBuffer.handleEvent:(Lio/vertx/core/Handler;Ljava/lang/Object;)V
        end local 5 // io.vertx.core.Handler handler
        end local 4 // java.lang.Object element
        29: .line 196
            goto 1
        start local 2 // io.vertx.core.Handler drainHandler
        start local 3 // io.vertx.core.Handler emptyHandler
        30: .line 224
      StackMap locals: io.vertx.core.streams.impl.InboundBuffer int io.vertx.core.Handler io.vertx.core.Handler
      StackMap stack:
            aload 2 /* drainHandler */
            ifnull 32
        31: .line 225
            aload 0 /* this */
            aload 2 /* drainHandler */
            aconst_null
            invokevirtual io.vertx.core.streams.impl.InboundBuffer.handleEvent:(Lio/vertx/core/Handler;Ljava/lang/Object;)V
        32: .line 227
      StackMap locals:
      StackMap stack:
            aload 3 /* emptyHandler */
            ifnull 34
        33: .line 228
            aload 0 /* this */
            aload 3 /* emptyHandler */
            aconst_null
            invokevirtual io.vertx.core.streams.impl.InboundBuffer.handleEvent:(Lio/vertx/core/Handler;Ljava/lang/Object;)V
        34: .line 230
      StackMap locals:
      StackMap stack:
            return
        end local 3 // io.vertx.core.Handler emptyHandler
        end local 2 // io.vertx.core.Handler drainHandler
        end local 1 // int emitted
        end local 0 // io.vertx.core.streams.impl.InboundBuffer this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   35     0          this  Lio/vertx/core/streams/impl/InboundBuffer<TE;>;
            1   35     1       emitted  I
            8    9     2  drainHandler  Lio/vertx/core/Handler<Ljava/lang/Void;>;
           10   15     2  drainHandler  Lio/vertx/core/Handler<Ljava/lang/Void;>;
           30   35     2  drainHandler  Lio/vertx/core/Handler<Ljava/lang/Void;>;
           13   15     3  emptyHandler  Lio/vertx/core/Handler<Ljava/lang/Void;>;
           30   35     3  emptyHandler  Lio/vertx/core/Handler<Ljava/lang/Void;>;
           23   26     4       element  TE;
           28   29     4       element  TE;
           24   26     5       handler  Lio/vertx/core/Handler<TE;>;
           28   29     5       handler  Lio/vertx/core/Handler<TE;>;
            3   24     7          size  I
      Exception table:
        from    to  target  type
           2    14      26  any
          15    18      26  any
          19    25      26  any
          26    27      26  any

  private <T> void handleEvent(io.vertx.core.Handler<T>, );
    descriptor: (Lio/vertx/core/Handler;Ljava/lang/Object;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=4, args_size=3
        start local 0 // io.vertx.core.streams.impl.InboundBuffer this
        start local 1 // io.vertx.core.Handler handler
        start local 2 // java.lang.Object element
         0: .line 233
            aload 1 /* handler */
            ifnull 5
         1: .line 235
            aload 1 /* handler */
            aload 2 /* element */
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
         2: .line 236
            goto 5
      StackMap locals:
      StackMap stack: java.lang.Throwable
         3: astore 3 /* t */
        start local 3 // java.lang.Throwable t
         4: .line 237
            aload 0 /* this */
            aload 3 /* t */
            invokevirtual io.vertx.core.streams.impl.InboundBuffer.handleException:(Ljava/lang/Throwable;)V
        end local 3 // java.lang.Throwable t
         5: .line 240
      StackMap locals:
      StackMap stack:
            return
        end local 2 // java.lang.Object element
        end local 1 // io.vertx.core.Handler handler
        end local 0 // io.vertx.core.streams.impl.InboundBuffer this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    6     0     this  Lio/vertx/core/streams/impl/InboundBuffer<TE;>;
            0    6     1  handler  Lio/vertx/core/Handler<TT;>;
            0    6     2  element  TT;
            4    5     3        t  Ljava/lang/Throwable;
      Exception table:
        from    to  target  type
           1     2       3  Class java.lang.Throwable
    Signature: <T:Ljava/lang/Object;>(Lio/vertx/core/Handler<TT;>;TT;)V
    MethodParameters:
         Name  Flags
      handler  
      element  

  private void handleException(java.lang.Throwable);
    descriptor: (Ljava/lang/Throwable;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=4, args_size=2
        start local 0 // io.vertx.core.streams.impl.InboundBuffer this
        start local 1 // java.lang.Throwable err
         0: .line 244
            aload 0 /* this */
            dup
            astore 3
            monitorenter
         1: .line 245
            aload 0 /* this */
            getfield io.vertx.core.streams.impl.InboundBuffer.exceptionHandler:Lio/vertx/core/Handler;
            dup
            astore 2 /* handler */
        start local 2 // io.vertx.core.Handler handler
         2: ifnonnull 5
         3: .line 246
            aload 3
            monitorexit
         4: return
         5: .line 244
      StackMap locals: io.vertx.core.Handler io.vertx.core.streams.impl.InboundBuffer
      StackMap stack:
            aload 3
            monitorexit
         6: goto 9
        end local 2 // io.vertx.core.Handler handler
      StackMap locals: io.vertx.core.streams.impl.InboundBuffer java.lang.Throwable top io.vertx.core.streams.impl.InboundBuffer
      StackMap stack: java.lang.Throwable
         7: aload 3
            monitorexit
         8: athrow
        start local 2 // io.vertx.core.Handler handler
         9: .line 249
      StackMap locals: io.vertx.core.streams.impl.InboundBuffer java.lang.Throwable io.vertx.core.Handler
      StackMap stack:
            aload 2 /* handler */
            aload 1 /* err */
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
        10: .line 250
            return
        end local 2 // io.vertx.core.Handler handler
        end local 1 // java.lang.Throwable err
        end local 0 // io.vertx.core.streams.impl.InboundBuffer this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   11     0     this  Lio/vertx/core/streams/impl/InboundBuffer<TE;>;
            0   11     1      err  Ljava/lang/Throwable;
            2    7     2  handler  Lio/vertx/core/Handler<Ljava/lang/Throwable;>;
            9   11     2  handler  Lio/vertx/core/Handler<Ljava/lang/Throwable;>;
      Exception table:
        from    to  target  type
           1     4       7  any
           5     6       7  any
           7     8       7  any
    MethodParameters:
      Name  Flags
      err   

  public boolean fetch(long);
    descriptor: (J)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=2
        start local 0 // io.vertx.core.streams.impl.InboundBuffer this
        start local 1 // long amount
         0: .line 262
            lload 1 /* amount */
            lconst_0
            lcmp
            ifge 2
         1: .line 263
            new java.lang.IllegalArgumentException
            dup
            invokespecial java.lang.IllegalArgumentException.<init>:()V
            athrow
         2: .line 265
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            astore 3
            monitorenter
         3: .line 266
            aload 0 /* this */
            dup
            getfield io.vertx.core.streams.impl.InboundBuffer.demand:J
            lload 1 /* amount */
            ladd
            putfield io.vertx.core.streams.impl.InboundBuffer.demand:J
         4: .line 267
            aload 0 /* this */
            getfield io.vertx.core.streams.impl.InboundBuffer.demand:J
            lconst_0
            lcmp
            ifge 6
         5: .line 268
            aload 0 /* this */
            ldc 9223372036854775807
            putfield io.vertx.core.streams.impl.InboundBuffer.demand:J
         6: .line 270
      StackMap locals: io.vertx.core.streams.impl.InboundBuffer
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.core.streams.impl.InboundBuffer.emitting:Z
            ifne 7
            aload 0 /* this */
            getfield io.vertx.core.streams.impl.InboundBuffer.pending:Ljava/util/ArrayDeque;
            invokevirtual java.util.ArrayDeque.isEmpty:()Z
            ifeq 9
            aload 0 /* this */
            getfield io.vertx.core.streams.impl.InboundBuffer.overflow:Z
            ifne 9
         7: .line 271
      StackMap locals:
      StackMap stack:
            aload 3
            monitorexit
         8: iconst_0
            ireturn
         9: .line 273
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_1
            putfield io.vertx.core.streams.impl.InboundBuffer.emitting:Z
        10: .line 265
            aload 3
            monitorexit
        11: goto 14
      StackMap locals:
      StackMap stack: java.lang.Throwable
        12: aload 3
            monitorexit
        13: athrow
        14: .line 275
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.core.streams.impl.InboundBuffer.context:Lio/vertx/core/Context;
            aload 0 /* this */
            invokedynamic handle(Lio/vertx/core/streams/impl/InboundBuffer;)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/streams/impl/InboundBuffer.lambda$0(Ljava/lang/Void;)V (7)
                  (Ljava/lang/Void;)V
            invokeinterface io.vertx.core.Context.runOnContext:(Lio/vertx/core/Handler;)V
        15: .line 276
            iconst_1
            ireturn
        end local 1 // long amount
        end local 0 // io.vertx.core.streams.impl.InboundBuffer this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   16     0    this  Lio/vertx/core/streams/impl/InboundBuffer<TE;>;
            0   16     1  amount  J
      Exception table:
        from    to  target  type
           3     8      12  any
           9    11      12  any
          12    13      12  any
    MethodParameters:
        Name  Flags
      amount  

  public E read();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // io.vertx.core.streams.impl.InboundBuffer this
         0: .line 287
            aload 0 /* this */
            dup
            astore 1
            monitorenter
         1: .line 288
            aload 0 /* this */
            getfield io.vertx.core.streams.impl.InboundBuffer.pending:Ljava/util/ArrayDeque;
            invokevirtual java.util.ArrayDeque.poll:()Ljava/lang/Object;
            aload 1
            monitorexit
         2: areturn
         3: .line 287
      StackMap locals: io.vertx.core.streams.impl.InboundBuffer io.vertx.core.streams.impl.InboundBuffer
      StackMap stack: java.lang.Throwable
            aload 1
            monitorexit
         4: athrow
        end local 0 // io.vertx.core.streams.impl.InboundBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lio/vertx/core/streams/impl/InboundBuffer<TE;>;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    Signature: ()TE;

  public synchronized io.vertx.core.streams.impl.InboundBuffer<E> clear();
    descriptor: ()Lio/vertx/core/streams/impl/InboundBuffer;
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.streams.impl.InboundBuffer this
         0: .line 300
            aload 0 /* this */
            getfield io.vertx.core.streams.impl.InboundBuffer.pending:Ljava/util/ArrayDeque;
            invokevirtual java.util.ArrayDeque.clear:()V
         1: .line 301
            aload 0 /* this */
            areturn
        end local 0 // io.vertx.core.streams.impl.InboundBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/core/streams/impl/InboundBuffer<TE;>;
    Signature: ()Lio/vertx/core/streams/impl/InboundBuffer<TE;>;

  public synchronized io.vertx.core.streams.impl.InboundBuffer<E> pause();
    descriptor: ()Lio/vertx/core/streams/impl/InboundBuffer;
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // io.vertx.core.streams.impl.InboundBuffer this
         0: .line 310
            aload 0 /* this */
            lconst_0
            putfield io.vertx.core.streams.impl.InboundBuffer.demand:J
         1: .line 311
            aload 0 /* this */
            areturn
        end local 0 // io.vertx.core.streams.impl.InboundBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/core/streams/impl/InboundBuffer<TE;>;
    Signature: ()Lio/vertx/core/streams/impl/InboundBuffer<TE;>;

  public boolean resume();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // io.vertx.core.streams.impl.InboundBuffer this
         0: .line 324
            aload 0 /* this */
            ldc 9223372036854775807
            invokevirtual io.vertx.core.streams.impl.InboundBuffer.fetch:(J)Z
            ireturn
        end local 0 // io.vertx.core.streams.impl.InboundBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/streams/impl/InboundBuffer<TE;>;

  public synchronized io.vertx.core.streams.impl.InboundBuffer<E> handler(io.vertx.core.Handler<E>);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/core/streams/impl/InboundBuffer;
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.streams.impl.InboundBuffer this
        start local 1 // io.vertx.core.Handler handler
         0: .line 334
            aload 0 /* this */
            aload 1 /* handler */
            putfield io.vertx.core.streams.impl.InboundBuffer.handler:Lio/vertx/core/Handler;
         1: .line 335
            aload 0 /* this */
            areturn
        end local 1 // io.vertx.core.Handler handler
        end local 0 // io.vertx.core.streams.impl.InboundBuffer this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lio/vertx/core/streams/impl/InboundBuffer<TE;>;
            0    2     1  handler  Lio/vertx/core/Handler<TE;>;
    Signature: (Lio/vertx/core/Handler<TE;>;)Lio/vertx/core/streams/impl/InboundBuffer<TE;>;
    MethodParameters:
         Name  Flags
      handler  

  public synchronized io.vertx.core.streams.impl.InboundBuffer<E> drainHandler(io.vertx.core.Handler<java.lang.Void>);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/core/streams/impl/InboundBuffer;
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.streams.impl.InboundBuffer this
        start local 1 // io.vertx.core.Handler handler
         0: .line 345
            aload 0 /* this */
            aload 1 /* handler */
            putfield io.vertx.core.streams.impl.InboundBuffer.drainHandler:Lio/vertx/core/Handler;
         1: .line 346
            aload 0 /* this */
            areturn
        end local 1 // io.vertx.core.Handler handler
        end local 0 // io.vertx.core.streams.impl.InboundBuffer this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lio/vertx/core/streams/impl/InboundBuffer<TE;>;
            0    2     1  handler  Lio/vertx/core/Handler<Ljava/lang/Void;>;
    Signature: (Lio/vertx/core/Handler<Ljava/lang/Void;>;)Lio/vertx/core/streams/impl/InboundBuffer<TE;>;
    MethodParameters:
         Name  Flags
      handler  

  public synchronized io.vertx.core.streams.impl.InboundBuffer<E> emptyHandler(io.vertx.core.Handler<java.lang.Void>);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/core/streams/impl/InboundBuffer;
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.streams.impl.InboundBuffer this
        start local 1 // io.vertx.core.Handler handler
         0: .line 356
            aload 0 /* this */
            aload 1 /* handler */
            putfield io.vertx.core.streams.impl.InboundBuffer.emptyHandler:Lio/vertx/core/Handler;
         1: .line 357
            aload 0 /* this */
            areturn
        end local 1 // io.vertx.core.Handler handler
        end local 0 // io.vertx.core.streams.impl.InboundBuffer this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lio/vertx/core/streams/impl/InboundBuffer<TE;>;
            0    2     1  handler  Lio/vertx/core/Handler<Ljava/lang/Void;>;
    Signature: (Lio/vertx/core/Handler<Ljava/lang/Void;>;)Lio/vertx/core/streams/impl/InboundBuffer<TE;>;
    MethodParameters:
         Name  Flags
      handler  

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

  public synchronized boolean isEmpty();
    descriptor: ()Z
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.streams.impl.InboundBuffer this
         0: .line 375
            aload 0 /* this */
            getfield io.vertx.core.streams.impl.InboundBuffer.pending:Ljava/util/ArrayDeque;
            invokevirtual java.util.ArrayDeque.isEmpty:()Z
            ireturn
        end local 0 // io.vertx.core.streams.impl.InboundBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/streams/impl/InboundBuffer<TE;>;

  public synchronized boolean isWritable();
    descriptor: ()Z
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // io.vertx.core.streams.impl.InboundBuffer this
         0: .line 382
            aload 0 /* this */
            getfield io.vertx.core.streams.impl.InboundBuffer.pending:Ljava/util/ArrayDeque;
            invokevirtual java.util.ArrayDeque.size:()I
            i2l
            aload 0 /* this */
            getfield io.vertx.core.streams.impl.InboundBuffer.highWaterMark:J
            lcmp
            ifge 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // io.vertx.core.streams.impl.InboundBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/core/streams/impl/InboundBuffer<TE;>;

  public synchronized boolean isPaused();
    descriptor: ()Z
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // io.vertx.core.streams.impl.InboundBuffer this
         0: .line 389
            aload 0 /* this */
            getfield io.vertx.core.streams.impl.InboundBuffer.demand:J
            lconst_0
            lcmp
            ifne 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // io.vertx.core.streams.impl.InboundBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/core/streams/impl/InboundBuffer<TE;>;

  public synchronized int size();
    descriptor: ()I
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.streams.impl.InboundBuffer this
         0: .line 396
            aload 0 /* this */
            getfield io.vertx.core.streams.impl.InboundBuffer.pending:Ljava/util/ArrayDeque;
            invokevirtual java.util.ArrayDeque.size:()I
            ireturn
        end local 0 // io.vertx.core.streams.impl.InboundBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/streams/impl/InboundBuffer<TE;>;

  private void lambda$0(java.lang.Void);
    descriptor: (Ljava/lang/Void;)V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // io.vertx.core.streams.impl.InboundBuffer this
        start local 1 // java.lang.Void v
         0: .line 275
            aload 0 /* this */
            invokevirtual io.vertx.core.streams.impl.InboundBuffer.drain:()V
            return
        end local 1 // java.lang.Void v
        end local 0 // io.vertx.core.streams.impl.InboundBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/streams/impl/InboundBuffer<TE;>;
            0    1     1     v  Ljava/lang/Void;
}
Signature: <E:Ljava/lang/Object;>Ljava/lang/Object;
SourceFile: "InboundBuffer.java"
InnerClasses:
  public final Lookup = java.lang.invoke.MethodHandles$Lookup of java.lang.invoke.MethodHandles