public abstract class io.vertx.core.net.impl.ConnectionBase
  minor version: 0
  major version: 59
  flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
  this_class: io.vertx.core.net.impl.ConnectionBase
  super_class: java.lang.Object
{
  public static final io.vertx.core.VertxException CLOSED_EXCEPTION;
    descriptor: Lio/vertx/core/VertxException;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL

  private static final io.vertx.core.logging.Logger log;
    descriptor: Lio/vertx/core/logging/Logger;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

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

  public final io.netty.channel.VoidChannelPromise voidPromise;
    descriptor: Lio/netty/channel/VoidChannelPromise;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL

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

  protected final io.netty.channel.ChannelHandlerContext chctx;
    descriptor: Lio/netty/channel/ChannelHandlerContext;
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL

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

  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 io.vertx.core.Handler<java.lang.Void> closeHandler;
    descriptor: Lio/vertx/core/Handler;
    flags: (0x0002) ACC_PRIVATE
    Signature: Lio/vertx/core/Handler<Ljava/lang/Void;>;

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

  private java.lang.Object metric;
    descriptor: Ljava/lang/Object;
    flags: (0x0002) ACC_PRIVATE

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

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

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=4, locals=0, args_size=0
         0: .line 51
            new io.vertx.core.VertxException
            dup
            ldc "Connection was closed"
            iconst_1
            invokespecial io.vertx.core.VertxException.<init>:(Ljava/lang/String;Z)V
            putstatic io.vertx.core.net.impl.ConnectionBase.CLOSED_EXCEPTION:Lio/vertx/core/VertxException;
         1: .line 52
            ldc Lio/vertx/core/net/impl/ConnectionBase;
            invokestatic io.vertx.core.logging.LoggerFactory.getLogger:(Ljava/lang/Class;)Lio/vertx/core/logging/Logger;
            putstatic io.vertx.core.net.impl.ConnectionBase.log:Lio/vertx/core/logging/Logger;
         2: .line 53
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  protected void <init>(io.vertx.core.impl.VertxInternal, io.netty.channel.ChannelHandlerContext, io.vertx.core.impl.ContextInternal);
    descriptor: (Lio/vertx/core/impl/VertxInternal;Lio/netty/channel/ChannelHandlerContext;Lio/vertx/core/impl/ContextInternal;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=5, locals=4, args_size=4
        start local 0 // io.vertx.core.net.impl.ConnectionBase this
        start local 1 // io.vertx.core.impl.VertxInternal vertx
        start local 2 // io.netty.channel.ChannelHandlerContext chctx
        start local 3 // io.vertx.core.impl.ContextInternal context
         0: .line 68
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 69
            aload 0 /* this */
            aload 1 /* vertx */
            putfield io.vertx.core.net.impl.ConnectionBase.vertx:Lio/vertx/core/impl/VertxInternal;
         2: .line 70
            aload 0 /* this */
            aload 2 /* chctx */
            putfield io.vertx.core.net.impl.ConnectionBase.chctx:Lio/netty/channel/ChannelHandlerContext;
         3: .line 71
            aload 0 /* this */
            aload 3 /* context */
            putfield io.vertx.core.net.impl.ConnectionBase.context:Lio/vertx/core/impl/ContextInternal;
         4: .line 72
            aload 0 /* this */
            new io.netty.channel.VoidChannelPromise
            dup
            aload 2 /* chctx */
            invokeinterface io.netty.channel.ChannelHandlerContext.channel:()Lio/netty/channel/Channel;
            iconst_0
            invokespecial io.netty.channel.VoidChannelPromise.<init>:(Lio/netty/channel/Channel;Z)V
            putfield io.vertx.core.net.impl.ConnectionBase.voidPromise:Lio/netty/channel/VoidChannelPromise;
         5: .line 73
            return
        end local 3 // io.vertx.core.impl.ContextInternal context
        end local 2 // io.netty.channel.ChannelHandlerContext chctx
        end local 1 // io.vertx.core.impl.VertxInternal vertx
        end local 0 // io.vertx.core.net.impl.ConnectionBase this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    6     0     this  Lio/vertx/core/net/impl/ConnectionBase;
            0    6     1    vertx  Lio/vertx/core/impl/VertxInternal;
            0    6     2    chctx  Lio/netty/channel/ChannelHandlerContext;
            0    6     3  context  Lio/vertx/core/impl/ContextInternal;
    MethodParameters:
         Name  Flags
      vertx    
      chctx    
      context  

  public void fail(java.lang.Throwable);
    descriptor: (Ljava/lang/Throwable;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.net.impl.ConnectionBase this
        start local 1 // java.lang.Throwable error
         0: .line 82
            aload 0 /* this */
            invokevirtual io.vertx.core.net.impl.ConnectionBase.handler:()Lio/vertx/core/net/impl/VertxHandler;
            aload 1 /* error */
            invokevirtual io.vertx.core.net.impl.VertxHandler.fail:(Ljava/lang/Throwable;)V
         1: .line 83
            return
        end local 1 // java.lang.Throwable error
        end local 0 // io.vertx.core.net.impl.ConnectionBase this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/vertx/core/net/impl/ConnectionBase;
            0    2     1  error  Ljava/lang/Throwable;
    MethodParameters:
       Name  Flags
      error  

  public io.vertx.core.net.impl.VertxHandler handler();
    descriptor: ()Lio/vertx/core/net/impl/VertxHandler;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.net.impl.ConnectionBase this
         0: .line 86
            aload 0 /* this */
            getfield io.vertx.core.net.impl.ConnectionBase.chctx:Lio/netty/channel/ChannelHandlerContext;
            invokeinterface io.netty.channel.ChannelHandlerContext.handler:()Lio/netty/channel/ChannelHandler;
            checkcast io.vertx.core.net.impl.VertxHandler
            areturn
        end local 0 // io.vertx.core.net.impl.ConnectionBase this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/net/impl/ConnectionBase;

  final void endReadAndFlush();
    descriptor: ()V
    flags: (0x0010) ACC_FINAL
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.vertx.core.net.impl.ConnectionBase this
         0: .line 93
            aload 0 /* this */
            getfield io.vertx.core.net.impl.ConnectionBase.read:Z
            ifeq 5
         1: .line 94
            aload 0 /* this */
            iconst_0
            putfield io.vertx.core.net.impl.ConnectionBase.read:Z
         2: .line 95
            aload 0 /* this */
            getfield io.vertx.core.net.impl.ConnectionBase.needsFlush:Z
            ifeq 5
         3: .line 96
            aload 0 /* this */
            iconst_0
            putfield io.vertx.core.net.impl.ConnectionBase.needsFlush:Z
         4: .line 97
            aload 0 /* this */
            getfield io.vertx.core.net.impl.ConnectionBase.chctx:Lio/netty/channel/ChannelHandlerContext;
            invokeinterface io.netty.channel.ChannelHandlerContext.flush:()Lio/netty/channel/ChannelHandlerContext;
            pop
         5: .line 100
      StackMap locals:
      StackMap stack:
            return
        end local 0 // io.vertx.core.net.impl.ConnectionBase this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lio/vertx/core/net/impl/ConnectionBase;

  final void setRead();
    descriptor: ()V
    flags: (0x0010) ACC_FINAL
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.vertx.core.net.impl.ConnectionBase this
         0: .line 106
            aload 0 /* this */
            iconst_1
            putfield io.vertx.core.net.impl.ConnectionBase.read:Z
         1: .line 107
            return
        end local 0 // io.vertx.core.net.impl.ConnectionBase this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/core/net/impl/ConnectionBase;

  private void write(java.lang.Object, boolean, io.netty.channel.ChannelPromise);
    descriptor: (Ljava/lang/Object;ZLio/netty/channel/ChannelPromise;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=4, args_size=4
        start local 0 // io.vertx.core.net.impl.ConnectionBase this
        start local 1 // java.lang.Object msg
        start local 2 // boolean flush
        start local 3 // io.netty.channel.ChannelPromise promise
         0: .line 117
            aload 0 /* this */
            iload 2 /* flush */
            ifeq 1
            iconst_0
            goto 2
      StackMap locals:
      StackMap stack: io.vertx.core.net.impl.ConnectionBase
         1: iconst_1
      StackMap locals: io.vertx.core.net.impl.ConnectionBase java.lang.Object int io.netty.channel.ChannelPromise
      StackMap stack: io.vertx.core.net.impl.ConnectionBase int
         2: putfield io.vertx.core.net.impl.ConnectionBase.needsFlush:Z
         3: .line 118
            iload 2 /* flush */
            ifeq 6
         4: .line 119
            aload 0 /* this */
            getfield io.vertx.core.net.impl.ConnectionBase.chctx:Lio/netty/channel/ChannelHandlerContext;
            aload 1 /* msg */
            aload 3 /* promise */
            invokeinterface io.netty.channel.ChannelHandlerContext.writeAndFlush:(Ljava/lang/Object;Lio/netty/channel/ChannelPromise;)Lio/netty/channel/ChannelFuture;
            pop
         5: .line 120
            goto 7
         6: .line 121
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.core.net.impl.ConnectionBase.chctx:Lio/netty/channel/ChannelHandlerContext;
            aload 1 /* msg */
            aload 3 /* promise */
            invokeinterface io.netty.channel.ChannelHandlerContext.write:(Ljava/lang/Object;Lio/netty/channel/ChannelPromise;)Lio/netty/channel/ChannelFuture;
            pop
         7: .line 123
      StackMap locals:
      StackMap stack:
            return
        end local 3 // io.netty.channel.ChannelPromise promise
        end local 2 // boolean flush
        end local 1 // java.lang.Object msg
        end local 0 // io.vertx.core.net.impl.ConnectionBase this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    8     0     this  Lio/vertx/core/net/impl/ConnectionBase;
            0    8     1      msg  Ljava/lang/Object;
            0    8     2    flush  Z
            0    8     3  promise  Lio/netty/channel/ChannelPromise;
    MethodParameters:
         Name  Flags
      msg      
      flush    
      promise  

  public final io.netty.channel.ChannelPromise toPromise(io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>);
    descriptor: (Lio/vertx/core/Handler;)Lio/netty/channel/ChannelPromise;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.net.impl.ConnectionBase this
        start local 1 // io.vertx.core.Handler handler
         0: .line 133
            aload 1 /* handler */
            ifnonnull 1
            aload 0 /* this */
            getfield io.vertx.core.net.impl.ConnectionBase.voidPromise:Lio/netty/channel/VoidChannelPromise;
            goto 2
      StackMap locals:
      StackMap stack:
         1: aload 0 /* this */
            aload 1 /* handler */
            invokevirtual io.vertx.core.net.impl.ConnectionBase.wrap:(Lio/vertx/core/Handler;)Lio/netty/channel/ChannelPromise;
      StackMap locals:
      StackMap stack: io.netty.channel.ChannelPromise
         2: areturn
        end local 1 // io.vertx.core.Handler handler
        end local 0 // io.vertx.core.net.impl.ConnectionBase this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0     this  Lio/vertx/core/net/impl/ConnectionBase;
            0    3     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;>;>;)Lio/netty/channel/ChannelPromise;
    MethodParameters:
         Name  Flags
      handler  

  private io.netty.channel.ChannelPromise wrap(io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>);
    descriptor: (Lio/vertx/core/Handler;)Lio/netty/channel/ChannelPromise;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // io.vertx.core.net.impl.ConnectionBase this
        start local 1 // io.vertx.core.Handler handler
         0: .line 137
            aload 0 /* this */
            getfield io.vertx.core.net.impl.ConnectionBase.chctx:Lio/netty/channel/ChannelHandlerContext;
            invokeinterface io.netty.channel.ChannelHandlerContext.newPromise:()Lio/netty/channel/ChannelPromise;
            astore 2 /* promise */
        start local 2 // io.netty.channel.ChannelPromise promise
         1: .line 138
            aload 2 /* promise */
            aload 1 /* handler */
            invokedynamic operationComplete(Lio/vertx/core/Handler;)Lio/netty/util/concurrent/GenericFutureListener;
              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:
                  (Lio/netty/util/concurrent/Future;)V
                  io/vertx/core/net/impl/ConnectionBase.lambda$0(Lio/vertx/core/Handler;Lio/netty/util/concurrent/Future;)V (6)
                  (Lio/netty/util/concurrent/Future;)V
            invokeinterface io.netty.channel.ChannelPromise.addListener:(Lio/netty/util/concurrent/GenericFutureListener;)Lio/netty/channel/ChannelPromise;
            pop
         2: .line 146
            aload 2 /* promise */
            areturn
        end local 2 // io.netty.channel.ChannelPromise promise
        end local 1 // io.vertx.core.Handler handler
        end local 0 // io.vertx.core.net.impl.ConnectionBase this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0     this  Lio/vertx/core/net/impl/ConnectionBase;
            0    3     1  handler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;
            1    3     2  promise  Lio/netty/channel/ChannelPromise;
    Signature: (Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;)Lio/netty/channel/ChannelPromise;
    MethodParameters:
         Name  Flags
      handler  

  public void writeToChannel(java.lang.Object, io.netty.channel.ChannelPromise);
    descriptor: (Ljava/lang/Object;Lio/netty/channel/ChannelPromise;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // io.vertx.core.net.impl.ConnectionBase this
        start local 1 // java.lang.Object msg
        start local 2 // io.netty.channel.ChannelPromise promise
         0: .line 150
            aload 0 /* this */
            dup
            astore 3
            monitorenter
         1: .line 151
            aload 0 /* this */
            getfield io.vertx.core.net.impl.ConnectionBase.chctx:Lio/netty/channel/ChannelHandlerContext;
            invokeinterface io.netty.channel.ChannelHandlerContext.executor:()Lio/netty/util/concurrent/EventExecutor;
            invokeinterface io.netty.util.concurrent.EventExecutor.inEventLoop:()Z
            ifeq 2
            aload 0 /* this */
            getfield io.vertx.core.net.impl.ConnectionBase.writeInProgress:I
            ifle 5
         2: .line 156
      StackMap locals: io.vertx.core.net.impl.ConnectionBase
      StackMap stack:
            aload 0 /* this */
            aload 1 /* msg */
            aload 2 /* promise */
            invokevirtual io.vertx.core.net.impl.ConnectionBase.queueForWrite:(Ljava/lang/Object;Lio/netty/channel/ChannelPromise;)V
         3: .line 157
            aload 3
            monitorexit
         4: return
         5: .line 150
      StackMap locals:
      StackMap stack:
            aload 3
            monitorexit
         6: goto 9
      StackMap locals:
      StackMap stack: java.lang.Throwable
         7: aload 3
            monitorexit
         8: athrow
         9: .line 161
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* msg */
            aload 0 /* this */
            getfield io.vertx.core.net.impl.ConnectionBase.read:Z
            ifeq 10
            iconst_0
            goto 11
      StackMap locals: io.vertx.core.net.impl.ConnectionBase java.lang.Object io.netty.channel.ChannelPromise
      StackMap stack: io.vertx.core.net.impl.ConnectionBase java.lang.Object
        10: iconst_1
      StackMap locals: io.vertx.core.net.impl.ConnectionBase java.lang.Object io.netty.channel.ChannelPromise
      StackMap stack: io.vertx.core.net.impl.ConnectionBase java.lang.Object int
        11: aload 2 /* promise */
            invokevirtual io.vertx.core.net.impl.ConnectionBase.write:(Ljava/lang/Object;ZLio/netty/channel/ChannelPromise;)V
        12: .line 162
            return
        end local 2 // io.netty.channel.ChannelPromise promise
        end local 1 // java.lang.Object msg
        end local 0 // io.vertx.core.net.impl.ConnectionBase this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   13     0     this  Lio/vertx/core/net/impl/ConnectionBase;
            0   13     1      msg  Ljava/lang/Object;
            0   13     2  promise  Lio/netty/channel/ChannelPromise;
      Exception table:
        from    to  target  type
           1     4       7  any
           5     6       7  any
           7     8       7  any
    MethodParameters:
         Name  Flags
      msg      
      promise  

  private void queueForWrite(java.lang.Object, io.netty.channel.ChannelPromise);
    descriptor: (Ljava/lang/Object;Lio/netty/channel/ChannelPromise;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // io.vertx.core.net.impl.ConnectionBase this
        start local 1 // java.lang.Object msg
        start local 2 // io.netty.channel.ChannelPromise promise
         0: .line 165
            aload 0 /* this */
            dup
            getfield io.vertx.core.net.impl.ConnectionBase.writeInProgress:I
            iconst_1
            iadd
            putfield io.vertx.core.net.impl.ConnectionBase.writeInProgress:I
         1: .line 166
            aload 0 /* this */
            getfield io.vertx.core.net.impl.ConnectionBase.chctx:Lio/netty/channel/ChannelHandlerContext;
            invokeinterface io.netty.channel.ChannelHandlerContext.executor:()Lio/netty/util/concurrent/EventExecutor;
            aload 0 /* this */
            aload 1 /* msg */
            aload 2 /* promise */
            invokedynamic run(Lio/vertx/core/net/impl/ConnectionBase;Ljava/lang/Object;Lio/netty/channel/ChannelPromise;)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/net/impl/ConnectionBase.lambda$1(Ljava/lang/Object;Lio/netty/channel/ChannelPromise;)V (7)
                  ()V
            invokeinterface io.netty.util.concurrent.EventExecutor.execute:(Ljava/lang/Runnable;)V
         2: .line 173
            return
        end local 2 // io.netty.channel.ChannelPromise promise
        end local 1 // java.lang.Object msg
        end local 0 // io.vertx.core.net.impl.ConnectionBase this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0     this  Lio/vertx/core/net/impl/ConnectionBase;
            0    3     1      msg  Ljava/lang/Object;
            0    3     2  promise  Lio/netty/channel/ChannelPromise;
    MethodParameters:
         Name  Flags
      msg      
      promise  

  public void writeToChannel(java.lang.Object);
    descriptor: (Ljava/lang/Object;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.vertx.core.net.impl.ConnectionBase this
        start local 1 // java.lang.Object obj
         0: .line 176
            aload 0 /* this */
            aload 1 /* obj */
            aload 0 /* this */
            getfield io.vertx.core.net.impl.ConnectionBase.voidPromise:Lio/netty/channel/VoidChannelPromise;
            invokevirtual io.vertx.core.net.impl.ConnectionBase.writeToChannel:(Ljava/lang/Object;Lio/netty/channel/ChannelPromise;)V
         1: .line 177
            return
        end local 1 // java.lang.Object obj
        end local 0 // io.vertx.core.net.impl.ConnectionBase this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/core/net/impl/ConnectionBase;
            0    2     1   obj  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      obj   

  public final void flush();
    descriptor: ()V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.vertx.core.net.impl.ConnectionBase this
         0: .line 183
            aload 0 /* this */
            aload 0 /* this */
            getfield io.vertx.core.net.impl.ConnectionBase.voidPromise:Lio/netty/channel/VoidChannelPromise;
            invokevirtual io.vertx.core.net.impl.ConnectionBase.flush:(Lio/netty/channel/ChannelPromise;)V
         1: .line 184
            return
        end local 0 // io.vertx.core.net.impl.ConnectionBase this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/core/net/impl/ConnectionBase;

  public final void flush(io.netty.channel.ChannelPromise);
    descriptor: (Lio/netty/channel/ChannelPromise;)V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.vertx.core.net.impl.ConnectionBase this
        start local 1 // io.netty.channel.ChannelPromise promise
         0: .line 192
            aload 0 /* this */
            getfield io.vertx.core.net.impl.ConnectionBase.chctx:Lio/netty/channel/ChannelHandlerContext;
            invokeinterface io.netty.channel.ChannelHandlerContext.executor:()Lio/netty/util/concurrent/EventExecutor;
            invokeinterface io.netty.util.concurrent.EventExecutor.inEventLoop:()Z
            ifeq 7
         1: .line 193
            aload 0 /* this */
            getfield io.vertx.core.net.impl.ConnectionBase.needsFlush:Z
            ifeq 5
         2: .line 194
            aload 0 /* this */
            iconst_0
            putfield io.vertx.core.net.impl.ConnectionBase.needsFlush:Z
         3: .line 195
            aload 0 /* this */
            getfield io.vertx.core.net.impl.ConnectionBase.chctx:Lio/netty/channel/ChannelHandlerContext;
            getstatic io.netty.buffer.Unpooled.EMPTY_BUFFER:Lio/netty/buffer/ByteBuf;
            aload 1 /* promise */
            invokeinterface io.netty.channel.ChannelHandlerContext.writeAndFlush:(Ljava/lang/Object;Lio/netty/channel/ChannelPromise;)Lio/netty/channel/ChannelFuture;
            pop
         4: .line 196
            goto 8
         5: .line 197
      StackMap locals:
      StackMap stack:
            aload 1 /* promise */
            invokeinterface io.netty.channel.ChannelPromise.setSuccess:()Lio/netty/channel/ChannelPromise;
            pop
         6: .line 199
            goto 8
         7: .line 200
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.core.net.impl.ConnectionBase.chctx:Lio/netty/channel/ChannelHandlerContext;
            invokeinterface io.netty.channel.ChannelHandlerContext.executor:()Lio/netty/util/concurrent/EventExecutor;
            aload 0 /* this */
            aload 1 /* promise */
            invokedynamic run(Lio/vertx/core/net/impl/ConnectionBase;Lio/netty/channel/ChannelPromise;)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/net/impl/ConnectionBase.lambda$2(Lio/netty/channel/ChannelPromise;)V (7)
                  ()V
            invokeinterface io.netty.util.concurrent.EventExecutor.execute:(Ljava/lang/Runnable;)V
         8: .line 202
      StackMap locals:
      StackMap stack:
            return
        end local 1 // io.netty.channel.ChannelPromise promise
        end local 0 // io.vertx.core.net.impl.ConnectionBase this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    9     0     this  Lio/vertx/core/net/impl/ConnectionBase;
            0    9     1  promise  Lio/netty/channel/ChannelPromise;
    MethodParameters:
         Name  Flags
      promise  

  public boolean isNotWritable();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.net.impl.ConnectionBase this
         0: .line 206
            aload 0 /* this */
            getfield io.vertx.core.net.impl.ConnectionBase.chctx:Lio/netty/channel/ChannelHandlerContext;
            invokeinterface io.netty.channel.ChannelHandlerContext.channel:()Lio/netty/channel/Channel;
            invokeinterface io.netty.channel.Channel.isWritable:()Z
            ifeq 1
            iconst_0
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_1
      StackMap locals:
      StackMap stack: int
         2: ireturn
        end local 0 // io.vertx.core.net.impl.ConnectionBase this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/vertx/core/net/impl/ConnectionBase;

  public void close();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.vertx.core.net.impl.ConnectionBase this
         0: .line 213
            aload 0 /* this */
            aconst_null
            invokevirtual io.vertx.core.net.impl.ConnectionBase.close:(Lio/vertx/core/Handler;)V
         1: .line 214
            return
        end local 0 // io.vertx.core.net.impl.ConnectionBase this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/core/net/impl/ConnectionBase;

  public void close(io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>);
    descriptor: (Lio/vertx/core/Handler;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // io.vertx.core.net.impl.ConnectionBase this
        start local 1 // io.vertx.core.Handler handler
         0: .line 221
            aload 0 /* this */
            getfield io.vertx.core.net.impl.ConnectionBase.chctx:Lio/netty/channel/ChannelHandlerContext;
         1: .line 222
            invokeinterface io.netty.channel.ChannelHandlerContext.newPromise:()Lio/netty/channel/ChannelPromise;
         2: .line 223
            aload 0 /* this */
            aload 1 /* handler */
            invokedynamic operationComplete(Lio/vertx/core/net/impl/ConnectionBase;Lio/vertx/core/Handler;)Lio/netty/channel/ChannelFutureListener;
              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:
                  (Lio/netty/util/concurrent/Future;)V
                  io/vertx/core/net/impl/ConnectionBase.lambda$3(Lio/vertx/core/Handler;Lio/netty/channel/ChannelFuture;)V (7)
                  (Lio/netty/channel/ChannelFuture;)V
            invokeinterface io.netty.channel.ChannelPromise.addListener:(Lio/netty/util/concurrent/GenericFutureListener;)Lio/netty/channel/ChannelPromise;
         3: .line 221
            astore 2 /* promise */
        start local 2 // io.netty.channel.ChannelPromise promise
         4: .line 229
            aload 0 /* this */
            aload 2 /* promise */
            invokevirtual io.vertx.core.net.impl.ConnectionBase.flush:(Lio/netty/channel/ChannelPromise;)V
         5: .line 230
            return
        end local 2 // io.netty.channel.ChannelPromise promise
        end local 1 // io.vertx.core.Handler handler
        end local 0 // io.vertx.core.net.impl.ConnectionBase this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    6     0     this  Lio/vertx/core/net/impl/ConnectionBase;
            0    6     1  handler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;
            4    6     2  promise  Lio/netty/channel/ChannelPromise;
    Signature: (Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;)V
    MethodParameters:
         Name  Flags
      handler  

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

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

  protected synchronized io.vertx.core.Handler<java.lang.Throwable> exceptionHandler();
    descriptor: ()Lio/vertx/core/Handler;
    flags: (0x0024) ACC_PROTECTED, ACC_SYNCHRONIZED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.net.impl.ConnectionBase this
         0: .line 243
            aload 0 /* this */
            getfield io.vertx.core.net.impl.ConnectionBase.exceptionHandler:Lio/vertx/core/Handler;
            areturn
        end local 0 // io.vertx.core.net.impl.ConnectionBase this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/net/impl/ConnectionBase;
    Signature: ()Lio/vertx/core/Handler<Ljava/lang/Throwable;>;

  public void doPause();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.vertx.core.net.impl.ConnectionBase this
         0: .line 247
            aload 0 /* this */
            getfield io.vertx.core.net.impl.ConnectionBase.chctx:Lio/netty/channel/ChannelHandlerContext;
            invokeinterface io.netty.channel.ChannelHandlerContext.channel:()Lio/netty/channel/Channel;
            invokeinterface io.netty.channel.Channel.config:()Lio/netty/channel/ChannelConfig;
            iconst_0
            invokeinterface io.netty.channel.ChannelConfig.setAutoRead:(Z)Lio/netty/channel/ChannelConfig;
            pop
         1: .line 248
            return
        end local 0 // io.vertx.core.net.impl.ConnectionBase this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/core/net/impl/ConnectionBase;

  public void doResume();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.vertx.core.net.impl.ConnectionBase this
         0: .line 251
            aload 0 /* this */
            getfield io.vertx.core.net.impl.ConnectionBase.chctx:Lio/netty/channel/ChannelHandlerContext;
            invokeinterface io.netty.channel.ChannelHandlerContext.channel:()Lio/netty/channel/Channel;
            invokeinterface io.netty.channel.Channel.config:()Lio/netty/channel/ChannelConfig;
            iconst_1
            invokeinterface io.netty.channel.ChannelConfig.setAutoRead:(Z)Lio/netty/channel/ChannelConfig;
            pop
         1: .line 252
            return
        end local 0 // io.vertx.core.net.impl.ConnectionBase this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/core/net/impl/ConnectionBase;

  public void doSetWriteQueueMaxSize(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // io.vertx.core.net.impl.ConnectionBase this
        start local 1 // int size
         0: .line 255
            aload 0 /* this */
            getfield io.vertx.core.net.impl.ConnectionBase.chctx:Lio/netty/channel/ChannelHandlerContext;
            invokeinterface io.netty.channel.ChannelHandlerContext.channel:()Lio/netty/channel/Channel;
            invokeinterface io.netty.channel.Channel.config:()Lio/netty/channel/ChannelConfig;
            astore 2 /* config */
        start local 2 // io.netty.channel.ChannelConfig config
         1: .line 256
            aload 2 /* config */
            new io.netty.channel.WriteBufferWaterMark
            dup
            iload 1 /* size */
            iconst_2
            idiv
            iload 1 /* size */
            invokespecial io.netty.channel.WriteBufferWaterMark.<init>:(II)V
            invokeinterface io.netty.channel.ChannelConfig.setWriteBufferWaterMark:(Lio/netty/channel/WriteBufferWaterMark;)Lio/netty/channel/ChannelConfig;
            pop
         2: .line 257
            return
        end local 2 // io.netty.channel.ChannelConfig config
        end local 1 // int size
        end local 0 // io.vertx.core.net.impl.ConnectionBase this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lio/vertx/core/net/impl/ConnectionBase;
            0    3     1    size  I
            1    3     2  config  Lio/netty/channel/ChannelConfig;
    MethodParameters:
      Name  Flags
      size  

  protected final void checkContext();
    descriptor: ()V
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // io.vertx.core.net.impl.ConnectionBase this
         0: .line 261
            aload 0 /* this */
            getfield io.vertx.core.net.impl.ConnectionBase.context:Lio/vertx/core/impl/ContextInternal;
            aload 0 /* this */
            getfield io.vertx.core.net.impl.ConnectionBase.vertx:Lio/vertx/core/impl/VertxInternal;
            invokeinterface io.vertx.core.impl.VertxInternal.getContext:()Lio/vertx/core/impl/ContextInternal;
            if_acmpeq 2
         1: .line 262
            new java.lang.IllegalStateException
            dup
            ldc "Wrong context!"
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 264
      StackMap locals:
      StackMap stack:
            return
        end local 0 // io.vertx.core.net.impl.ConnectionBase this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/vertx/core/net/impl/ConnectionBase;

  public final io.netty.channel.Channel channel();
    descriptor: ()Lio/netty/channel/Channel;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.net.impl.ConnectionBase this
         0: .line 270
            aload 0 /* this */
            getfield io.vertx.core.net.impl.ConnectionBase.chctx:Lio/netty/channel/ChannelHandlerContext;
            invokeinterface io.netty.channel.ChannelHandlerContext.channel:()Lio/netty/channel/Channel;
            areturn
        end local 0 // io.vertx.core.net.impl.ConnectionBase this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/net/impl/ConnectionBase;

  public final io.netty.channel.ChannelHandlerContext channelHandlerContext();
    descriptor: ()Lio/netty/channel/ChannelHandlerContext;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.net.impl.ConnectionBase this
         0: .line 274
            aload 0 /* this */
            getfield io.vertx.core.net.impl.ConnectionBase.chctx:Lio/netty/channel/ChannelHandlerContext;
            areturn
        end local 0 // io.vertx.core.net.impl.ConnectionBase this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/net/impl/ConnectionBase;

  public final io.vertx.core.impl.ContextInternal getContext();
    descriptor: ()Lio/vertx/core/impl/ContextInternal;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.net.impl.ConnectionBase this
         0: .line 278
            aload 0 /* this */
            getfield io.vertx.core.net.impl.ConnectionBase.context:Lio/vertx/core/impl/ContextInternal;
            areturn
        end local 0 // io.vertx.core.net.impl.ConnectionBase this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/net/impl/ConnectionBase;

  public final synchronized void metric(java.lang.Object);
    descriptor: (Ljava/lang/Object;)V
    flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SYNCHRONIZED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.net.impl.ConnectionBase this
        start local 1 // java.lang.Object metric
         0: .line 282
            aload 0 /* this */
            aload 1 /* metric */
            putfield io.vertx.core.net.impl.ConnectionBase.metric:Ljava/lang/Object;
         1: .line 283
            return
        end local 1 // java.lang.Object metric
        end local 0 // io.vertx.core.net.impl.ConnectionBase this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lio/vertx/core/net/impl/ConnectionBase;
            0    2     1  metric  Ljava/lang/Object;
    MethodParameters:
        Name  Flags
      metric  

  public final synchronized java.lang.Object metric();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SYNCHRONIZED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.net.impl.ConnectionBase this
         0: .line 286
            aload 0 /* this */
            getfield io.vertx.core.net.impl.ConnectionBase.metric:Ljava/lang/Object;
            areturn
        end local 0 // io.vertx.core.net.impl.ConnectionBase this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/net/impl/ConnectionBase;

  public abstract io.vertx.core.spi.metrics.NetworkMetrics metrics();
    descriptor: ()Lio/vertx/core/spi/metrics/NetworkMetrics;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  protected synchronized void handleException(java.lang.Throwable);
    descriptor: (Ljava/lang/Throwable;)V
    flags: (0x0024) ACC_PROTECTED, ACC_SYNCHRONIZED
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // io.vertx.core.net.impl.ConnectionBase this
        start local 1 // java.lang.Throwable t
         0: .line 292
            aload 0 /* this */
            invokevirtual io.vertx.core.net.impl.ConnectionBase.metrics:()Lio/vertx/core/spi/metrics/NetworkMetrics;
            astore 2 /* metrics */
        start local 2 // io.vertx.core.spi.metrics.NetworkMetrics metrics
         1: .line 293
            aload 2 /* metrics */
            ifnull 3
         2: .line 294
            aload 2 /* metrics */
            aload 0 /* this */
            getfield io.vertx.core.net.impl.ConnectionBase.metric:Ljava/lang/Object;
            aload 0 /* this */
            invokevirtual io.vertx.core.net.impl.ConnectionBase.remoteAddress:()Lio/vertx/core/net/SocketAddress;
            aload 1 /* t */
            invokeinterface io.vertx.core.spi.metrics.NetworkMetrics.exceptionOccurred:(Ljava/lang/Object;Lio/vertx/core/net/SocketAddress;Ljava/lang/Throwable;)V
         3: .line 296
      StackMap locals: io.vertx.core.spi.metrics.NetworkMetrics
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.core.net.impl.ConnectionBase.exceptionHandler:Lio/vertx/core/Handler;
            ifnull 6
         4: .line 297
            aload 0 /* this */
            getfield io.vertx.core.net.impl.ConnectionBase.exceptionHandler:Lio/vertx/core/Handler;
            aload 1 /* t */
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
         5: .line 298
            goto 10
         6: .line 299
      StackMap locals:
      StackMap stack:
            getstatic io.vertx.core.net.impl.ConnectionBase.log:Lio/vertx/core/logging/Logger;
            invokevirtual io.vertx.core.logging.Logger.isDebugEnabled:()Z
            ifeq 9
         7: .line 300
            getstatic io.vertx.core.net.impl.ConnectionBase.log:Lio/vertx/core/logging/Logger;
            aload 1 /* t */
            invokevirtual java.lang.Throwable.getMessage:()Ljava/lang/String;
            aload 1 /* t */
            invokevirtual io.vertx.core.logging.Logger.error:(Ljava/lang/Object;Ljava/lang/Throwable;)V
         8: .line 301
            goto 10
         9: .line 302
      StackMap locals:
      StackMap stack:
            getstatic io.vertx.core.net.impl.ConnectionBase.log:Lio/vertx/core/logging/Logger;
            aload 1 /* t */
            invokevirtual java.lang.Throwable.getMessage:()Ljava/lang/String;
            invokevirtual io.vertx.core.logging.Logger.error:(Ljava/lang/Object;)V
        10: .line 305
      StackMap locals:
      StackMap stack:
            return
        end local 2 // io.vertx.core.spi.metrics.NetworkMetrics metrics
        end local 1 // java.lang.Throwable t
        end local 0 // io.vertx.core.net.impl.ConnectionBase this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   11     0     this  Lio/vertx/core/net/impl/ConnectionBase;
            0   11     1        t  Ljava/lang/Throwable;
            1   11     2  metrics  Lio/vertx/core/spi/metrics/NetworkMetrics;
    MethodParameters:
      Name  Flags
      t     

  protected void handleClosed();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=4, args_size=1
        start local 0 // io.vertx.core.net.impl.ConnectionBase this
         0: .line 309
            aload 0 /* this */
            dup
            astore 2
            monitorenter
         1: .line 310
            aload 0 /* this */
            invokevirtual io.vertx.core.net.impl.ConnectionBase.metrics:()Lio/vertx/core/spi/metrics/NetworkMetrics;
            astore 3 /* metrics */
        start local 3 // io.vertx.core.spi.metrics.NetworkMetrics metrics
         2: .line 311
            aload 3 /* metrics */
            ifnull 4
            aload 3 /* metrics */
            instanceof io.vertx.core.spi.metrics.TCPMetrics
            ifeq 4
         3: .line 312
            aload 3 /* metrics */
            checkcast io.vertx.core.spi.metrics.TCPMetrics
            aload 0 /* this */
            invokevirtual io.vertx.core.net.impl.ConnectionBase.metric:()Ljava/lang/Object;
            aload 0 /* this */
            invokevirtual io.vertx.core.net.impl.ConnectionBase.remoteAddress:()Lio/vertx/core/net/SocketAddress;
            invokeinterface io.vertx.core.spi.metrics.TCPMetrics.disconnected:(Ljava/lang/Object;Lio/vertx/core/net/SocketAddress;)V
         4: .line 314
      StackMap locals: io.vertx.core.net.impl.ConnectionBase top io.vertx.core.net.impl.ConnectionBase io.vertx.core.spi.metrics.NetworkMetrics
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.core.net.impl.ConnectionBase.closeHandler:Lio/vertx/core/Handler;
            astore 1 /* handler */
        end local 3 // io.vertx.core.spi.metrics.NetworkMetrics metrics
        start local 1 // io.vertx.core.Handler handler
         5: .line 309
            aload 2
            monitorexit
         6: goto 9
        end local 1 // io.vertx.core.Handler handler
      StackMap locals: io.vertx.core.net.impl.ConnectionBase top io.vertx.core.net.impl.ConnectionBase
      StackMap stack: java.lang.Throwable
         7: aload 2
            monitorexit
         8: athrow
        start local 1 // io.vertx.core.Handler handler
         9: .line 316
      StackMap locals: io.vertx.core.net.impl.ConnectionBase io.vertx.core.Handler
      StackMap stack:
            aload 1 /* handler */
            ifnull 11
        10: .line 317
            aload 1 /* handler */
            aconst_null
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
        11: .line 319
      StackMap locals:
      StackMap stack:
            return
        end local 1 // io.vertx.core.Handler handler
        end local 0 // io.vertx.core.net.impl.ConnectionBase this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   12     0     this  Lio/vertx/core/net/impl/ConnectionBase;
            5    7     1  handler  Lio/vertx/core/Handler<Ljava/lang/Void;>;
            9   12     1  handler  Lio/vertx/core/Handler<Ljava/lang/Void;>;
            2    5     3  metrics  Lio/vertx/core/spi/metrics/NetworkMetrics;
      Exception table:
        from    to  target  type
           1     6       7  any
           7     8       7  any

  protected void handleIdle();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.net.impl.ConnectionBase this
         0: .line 329
            aload 0 /* this */
            getfield io.vertx.core.net.impl.ConnectionBase.chctx:Lio/netty/channel/ChannelHandlerContext;
            invokeinterface io.netty.channel.ChannelHandlerContext.close:()Lio/netty/channel/ChannelFuture;
            pop
         1: .line 330
            return
        end local 0 // io.vertx.core.net.impl.ConnectionBase this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/core/net/impl/ConnectionBase;

  protected abstract void handleInterestedOpsChanged();
    descriptor: ()V
    flags: (0x0404) ACC_PROTECTED, ACC_ABSTRACT

  protected void addFuture(io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>, io.netty.channel.ChannelFuture);
    descriptor: (Lio/vertx/core/Handler;Lio/netty/channel/ChannelFuture;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.vertx.core.net.impl.ConnectionBase this
        start local 1 // io.vertx.core.Handler completionHandler
        start local 2 // io.netty.channel.ChannelFuture future
         0: .line 335
            aload 2 /* future */
            ifnull 2
         1: .line 336
            aload 2 /* future */
            aload 0 /* this */
            aload 1 /* completionHandler */
            invokedynamic operationComplete(Lio/vertx/core/net/impl/ConnectionBase;Lio/vertx/core/Handler;)Lio/netty/util/concurrent/GenericFutureListener;
              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:
                  (Lio/netty/util/concurrent/Future;)V
                  io/vertx/core/net/impl/ConnectionBase.lambda$4(Lio/vertx/core/Handler;Lio/netty/util/concurrent/Future;)V (7)
                  (Lio/netty/util/concurrent/Future;)V
            invokeinterface io.netty.channel.ChannelFuture.addListener:(Lio/netty/util/concurrent/GenericFutureListener;)Lio/netty/channel/ChannelFuture;
            pop
         2: .line 348
      StackMap locals:
      StackMap stack:
            return
        end local 2 // io.netty.channel.ChannelFuture future
        end local 1 // io.vertx.core.Handler completionHandler
        end local 0 // io.vertx.core.net.impl.ConnectionBase this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0    3     0               this  Lio/vertx/core/net/impl/ConnectionBase;
            0    3     1  completionHandler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;
            0    3     2             future  Lio/netty/channel/ChannelFuture;
    Signature: (Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;Lio/netty/channel/ChannelFuture;)V
    MethodParameters:
                   Name  Flags
      completionHandler  final
      future             final

  protected boolean supportsFileRegion();
    descriptor: ()Z
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.net.impl.ConnectionBase this
         0: .line 351
            aload 0 /* this */
            invokevirtual io.vertx.core.net.impl.ConnectionBase.isSsl:()Z
            ifeq 1
            iconst_0
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_1
      StackMap locals:
      StackMap stack: int
         2: ireturn
        end local 0 // io.vertx.core.net.impl.ConnectionBase this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/vertx/core/net/impl/ConnectionBase;

  public void reportBytesRead(long);
    descriptor: (J)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=2
        start local 0 // io.vertx.core.net.impl.ConnectionBase this
        start local 1 // long numberOfBytes
         0: .line 355
            aload 0 /* this */
            invokevirtual io.vertx.core.net.impl.ConnectionBase.metrics:()Lio/vertx/core/spi/metrics/NetworkMetrics;
            astore 3 /* metrics */
        start local 3 // io.vertx.core.spi.metrics.NetworkMetrics metrics
         1: .line 356
            aload 3 /* metrics */
            ifnull 3
         2: .line 357
            aload 3 /* metrics */
            aload 0 /* this */
            invokevirtual io.vertx.core.net.impl.ConnectionBase.metric:()Ljava/lang/Object;
            aload 0 /* this */
            invokevirtual io.vertx.core.net.impl.ConnectionBase.remoteAddress:()Lio/vertx/core/net/SocketAddress;
            lload 1 /* numberOfBytes */
            invokeinterface io.vertx.core.spi.metrics.NetworkMetrics.bytesRead:(Ljava/lang/Object;Lio/vertx/core/net/SocketAddress;J)V
         3: .line 359
      StackMap locals: io.vertx.core.spi.metrics.NetworkMetrics
      StackMap stack:
            return
        end local 3 // io.vertx.core.spi.metrics.NetworkMetrics metrics
        end local 1 // long numberOfBytes
        end local 0 // io.vertx.core.net.impl.ConnectionBase this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    4     0           this  Lio/vertx/core/net/impl/ConnectionBase;
            0    4     1  numberOfBytes  J
            1    4     3        metrics  Lio/vertx/core/spi/metrics/NetworkMetrics;
    MethodParameters:
               Name  Flags
      numberOfBytes  

  public void reportBytesWritten(long);
    descriptor: (J)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=2
        start local 0 // io.vertx.core.net.impl.ConnectionBase this
        start local 1 // long numberOfBytes
         0: .line 362
            aload 0 /* this */
            invokevirtual io.vertx.core.net.impl.ConnectionBase.metrics:()Lio/vertx/core/spi/metrics/NetworkMetrics;
            astore 3 /* metrics */
        start local 3 // io.vertx.core.spi.metrics.NetworkMetrics metrics
         1: .line 363
            aload 3 /* metrics */
            ifnull 3
         2: .line 364
            aload 3 /* metrics */
            aload 0 /* this */
            invokevirtual io.vertx.core.net.impl.ConnectionBase.metric:()Ljava/lang/Object;
            aload 0 /* this */
            invokevirtual io.vertx.core.net.impl.ConnectionBase.remoteAddress:()Lio/vertx/core/net/SocketAddress;
            lload 1 /* numberOfBytes */
            invokeinterface io.vertx.core.spi.metrics.NetworkMetrics.bytesWritten:(Ljava/lang/Object;Lio/vertx/core/net/SocketAddress;J)V
         3: .line 366
      StackMap locals: io.vertx.core.spi.metrics.NetworkMetrics
      StackMap stack:
            return
        end local 3 // io.vertx.core.spi.metrics.NetworkMetrics metrics
        end local 1 // long numberOfBytes
        end local 0 // io.vertx.core.net.impl.ConnectionBase this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    4     0           this  Lio/vertx/core/net/impl/ConnectionBase;
            0    4     1  numberOfBytes  J
            1    4     3        metrics  Lio/vertx/core/spi/metrics/NetworkMetrics;
    MethodParameters:
               Name  Flags
      numberOfBytes  

  private void sendFileRegion(java.io.RandomAccessFile, long, long, io.netty.channel.ChannelPromise);
    descriptor: (Ljava/io/RandomAccessFile;JJLio/netty/channel/ChannelPromise;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=8, locals=9, args_size=5
        start local 0 // io.vertx.core.net.impl.ConnectionBase this
        start local 1 // java.io.RandomAccessFile file
        start local 2 // long offset
        start local 4 // long length
        start local 6 // io.netty.channel.ChannelPromise writeFuture
         0: .line 380
            lload 4 /* length */
            ldc 1048576
            lcmp
            ifge 3
         1: .line 381
            aload 0 /* this */
            new io.netty.channel.DefaultFileRegion
            dup
            aload 1 /* file */
            invokevirtual java.io.RandomAccessFile.getChannel:()Ljava/nio/channels/FileChannel;
            lload 2 /* offset */
            lload 4 /* length */
            invokespecial io.netty.channel.DefaultFileRegion.<init>:(Ljava/nio/channels/FileChannel;JJ)V
            aload 6 /* writeFuture */
            invokevirtual io.vertx.core.net.impl.ConnectionBase.writeToChannel:(Ljava/lang/Object;Lio/netty/channel/ChannelPromise;)V
         2: .line 382
            goto 8
         3: .line 383
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.core.net.impl.ConnectionBase.chctx:Lio/netty/channel/ChannelHandlerContext;
            invokeinterface io.netty.channel.ChannelHandlerContext.newPromise:()Lio/netty/channel/ChannelPromise;
            astore 7 /* promise */
        start local 7 // io.netty.channel.ChannelPromise promise
         4: .line 384
            new io.netty.channel.DefaultFileRegion
            dup
            aload 1 /* file */
            invokevirtual java.io.RandomAccessFile.getChannel:()Ljava/nio/channels/FileChannel;
            lload 2 /* offset */
            ldc 1048576
            invokespecial io.netty.channel.DefaultFileRegion.<init>:(Ljava/nio/channels/FileChannel;JJ)V
            astore 8 /* region */
        start local 8 // io.netty.channel.FileRegion region
         5: .line 387
            aload 8 /* region */
            invokeinterface io.netty.channel.FileRegion.retain:()Lio/netty/channel/FileRegion;
            pop
         6: .line 388
            aload 0 /* this */
            aload 8 /* region */
            aload 7 /* promise */
            invokevirtual io.vertx.core.net.impl.ConnectionBase.writeToChannel:(Ljava/lang/Object;Lio/netty/channel/ChannelPromise;)V
         7: .line 389
            aload 7 /* promise */
            aload 0 /* this */
            aload 1 /* file */
            lload 2 /* offset */
            lload 4 /* length */
            aload 6 /* writeFuture */
            invokedynamic operationComplete(Lio/vertx/core/net/impl/ConnectionBase;Ljava/io/RandomAccessFile;JJLio/netty/channel/ChannelPromise;)Lio/netty/util/concurrent/GenericFutureListener;
              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:
                  (Lio/netty/util/concurrent/Future;)V
                  io/vertx/core/net/impl/ConnectionBase.lambda$6(Ljava/io/RandomAccessFile;JJLio/netty/channel/ChannelPromise;Lio/netty/util/concurrent/Future;)V (7)
                  (Lio/netty/util/concurrent/Future;)V
            invokeinterface io.netty.channel.ChannelPromise.addListener:(Lio/netty/util/concurrent/GenericFutureListener;)Lio/netty/channel/ChannelPromise;
            pop
        end local 8 // io.netty.channel.FileRegion region
        end local 7 // io.netty.channel.ChannelPromise promise
         8: .line 398
      StackMap locals:
      StackMap stack:
            return
        end local 6 // io.netty.channel.ChannelPromise writeFuture
        end local 4 // long length
        end local 2 // long offset
        end local 1 // java.io.RandomAccessFile file
        end local 0 // io.vertx.core.net.impl.ConnectionBase this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    9     0         this  Lio/vertx/core/net/impl/ConnectionBase;
            0    9     1         file  Ljava/io/RandomAccessFile;
            0    9     2       offset  J
            0    9     4       length  J
            0    9     6  writeFuture  Lio/netty/channel/ChannelPromise;
            4    8     7      promise  Lio/netty/channel/ChannelPromise;
            5    8     8       region  Lio/netty/channel/FileRegion;
    MethodParameters:
             Name  Flags
      file         
      offset       
      length       
      writeFuture  

  protected io.netty.channel.ChannelFuture sendFile(java.io.RandomAccessFile, long, long);
    descriptor: (Ljava/io/RandomAccessFile;JJ)Lio/netty/channel/ChannelFuture;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=9, locals=7, args_size=4
        start local 0 // io.vertx.core.net.impl.ConnectionBase this
        start local 1 // java.io.RandomAccessFile raf
        start local 2 // long offset
        start local 4 // long length
         0: .line 402
            aload 0 /* this */
            getfield io.vertx.core.net.impl.ConnectionBase.chctx:Lio/netty/channel/ChannelHandlerContext;
            invokeinterface io.netty.channel.ChannelHandlerContext.newPromise:()Lio/netty/channel/ChannelPromise;
            astore 6 /* writeFuture */
        start local 6 // io.netty.channel.ChannelPromise writeFuture
         1: .line 403
            aload 0 /* this */
            invokevirtual io.vertx.core.net.impl.ConnectionBase.supportsFileRegion:()Z
            ifne 4
         2: .line 405
            aload 0 /* this */
            new io.netty.handler.stream.ChunkedFile
            dup
            aload 1 /* raf */
            lload 2 /* offset */
            lload 4 /* length */
            sipush 8192
            invokespecial io.netty.handler.stream.ChunkedFile.<init>:(Ljava/io/RandomAccessFile;JJI)V
            aload 6 /* writeFuture */
            invokevirtual io.vertx.core.net.impl.ConnectionBase.writeToChannel:(Ljava/lang/Object;Lio/netty/channel/ChannelPromise;)V
         3: .line 406
            goto 5
         4: .line 408
      StackMap locals: io.netty.channel.ChannelPromise
      StackMap stack:
            aload 0 /* this */
            aload 1 /* raf */
            lload 2 /* offset */
            lload 4 /* length */
            aload 6 /* writeFuture */
            invokevirtual io.vertx.core.net.impl.ConnectionBase.sendFileRegion:(Ljava/io/RandomAccessFile;JJLio/netty/channel/ChannelPromise;)V
         5: .line 410
      StackMap locals:
      StackMap stack:
            aload 6 /* writeFuture */
            ifnull 8
         6: .line 411
            aload 6 /* writeFuture */
            aload 1 /* raf */
            invokedynamic operationComplete(Ljava/io/RandomAccessFile;)Lio/netty/util/concurrent/GenericFutureListener;
              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:
                  (Lio/netty/util/concurrent/Future;)V
                  io/vertx/core/net/impl/ConnectionBase.lambda$7(Ljava/io/RandomAccessFile;Lio/netty/util/concurrent/Future;)V (6)
                  (Lio/netty/util/concurrent/Future;)V
            invokeinterface io.netty.channel.ChannelPromise.addListener:(Lio/netty/util/concurrent/GenericFutureListener;)Lio/netty/channel/ChannelPromise;
            pop
         7: .line 412
            goto 9
         8: .line 413
      StackMap locals:
      StackMap stack:
            aload 1 /* raf */
            invokevirtual java.io.RandomAccessFile.close:()V
         9: .line 415
      StackMap locals:
      StackMap stack:
            aload 6 /* writeFuture */
            areturn
        end local 6 // io.netty.channel.ChannelPromise writeFuture
        end local 4 // long length
        end local 2 // long offset
        end local 1 // java.io.RandomAccessFile raf
        end local 0 // io.vertx.core.net.impl.ConnectionBase this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   10     0         this  Lio/vertx/core/net/impl/ConnectionBase;
            0   10     1          raf  Ljava/io/RandomAccessFile;
            0   10     2       offset  J
            0   10     4       length  J
            1   10     6  writeFuture  Lio/netty/channel/ChannelPromise;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
        Name  Flags
      raf     
      offset  
      length  

  public boolean isSsl();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.vertx.core.net.impl.ConnectionBase this
         0: .line 419
            aload 0 /* this */
            getfield io.vertx.core.net.impl.ConnectionBase.chctx:Lio/netty/channel/ChannelHandlerContext;
            invokeinterface io.netty.channel.ChannelHandlerContext.pipeline:()Lio/netty/channel/ChannelPipeline;
            ldc Lio/netty/handler/ssl/SslHandler;
            invokeinterface io.netty.channel.ChannelPipeline.get:(Ljava/lang/Class;)Lio/netty/channel/ChannelHandler;
            ifnull 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // io.vertx.core.net.impl.ConnectionBase this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/core/net/impl/ConnectionBase;

  public javax.net.ssl.SSLSession sslSession();
    descriptor: ()Ljavax/net/ssl/SSLSession;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=1
        start local 0 // io.vertx.core.net.impl.ConnectionBase this
         0: .line 423
            aload 0 /* this */
            getfield io.vertx.core.net.impl.ConnectionBase.chctx:Lio/netty/channel/ChannelHandlerContext;
            invokeinterface io.netty.channel.ChannelHandlerContext.pipeline:()Lio/netty/channel/ChannelPipeline;
            ldc Lio/netty/handler/ssl/SslHandler;
            invokeinterface io.netty.channel.ChannelPipeline.context:(Ljava/lang/Class;)Lio/netty/channel/ChannelHandlerContext;
            astore 1 /* sslHandlerContext */
        start local 1 // io.netty.channel.ChannelHandlerContext sslHandlerContext
         1: .line 424
            aload 1 /* sslHandlerContext */
            ifnull 4
         2: .line 425
            aload 1 /* sslHandlerContext */
            invokeinterface io.netty.channel.ChannelHandlerContext.handler:()Lio/netty/channel/ChannelHandler;
            checkcast io.netty.handler.ssl.SslHandler
            astore 2 /* sslHandler */
        start local 2 // io.netty.handler.ssl.SslHandler sslHandler
         3: .line 426
            aload 2 /* sslHandler */
            invokevirtual io.netty.handler.ssl.SslHandler.engine:()Ljavax/net/ssl/SSLEngine;
            invokevirtual javax.net.ssl.SSLEngine.getSession:()Ljavax/net/ssl/SSLSession;
            areturn
        end local 2 // io.netty.handler.ssl.SslHandler sslHandler
         4: .line 428
      StackMap locals: io.netty.channel.ChannelHandlerContext
      StackMap stack:
            aconst_null
            areturn
        end local 1 // io.netty.channel.ChannelHandlerContext sslHandlerContext
        end local 0 // io.vertx.core.net.impl.ConnectionBase this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0    5     0               this  Lio/vertx/core/net/impl/ConnectionBase;
            1    5     1  sslHandlerContext  Lio/netty/channel/ChannelHandlerContext;
            3    4     2         sslHandler  Lio/netty/handler/ssl/SslHandler;

  public javax.security.cert.X509Certificate[] peerCertificateChain();
    descriptor: ()[Ljavax/security/cert/X509Certificate;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=2, args_size=1
        start local 0 // io.vertx.core.net.impl.ConnectionBase this
         0: .line 433
            aload 0 /* this */
            invokevirtual io.vertx.core.net.impl.ConnectionBase.sslSession:()Ljavax/net/ssl/SSLSession;
            astore 1 /* session */
        start local 1 // javax.net.ssl.SSLSession session
         1: .line 434
            aload 1 /* session */
            ifnull 3
         2: .line 435
            aload 1 /* session */
            invokeinterface javax.net.ssl.SSLSession.getPeerCertificateChain:()[Ljavax/security/cert/X509Certificate;
            areturn
         3: .line 437
      StackMap locals: javax.net.ssl.SSLSession
      StackMap stack:
            aconst_null
            areturn
        end local 1 // javax.net.ssl.SSLSession session
        end local 0 // io.vertx.core.net.impl.ConnectionBase this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    4     0     this  Lio/vertx/core/net/impl/ConnectionBase;
            1    4     1  session  Ljavax/net/ssl/SSLSession;
    Exceptions:
      throws javax.net.ssl.SSLPeerUnverifiedException

  public java.lang.String indicatedServerName();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.vertx.core.net.impl.ConnectionBase this
         0: .line 442
            aload 0 /* this */
            getfield io.vertx.core.net.impl.ConnectionBase.chctx:Lio/netty/channel/ChannelHandlerContext;
            invokeinterface io.netty.channel.ChannelHandlerContext.channel:()Lio/netty/channel/Channel;
            getstatic io.vertx.core.net.impl.SslHandshakeCompletionHandler.SERVER_NAME_ATTR:Lio/netty/util/AttributeKey;
            invokeinterface io.netty.channel.Channel.hasAttr:(Lio/netty/util/AttributeKey;)Z
            ifeq 2
         1: .line 443
            aload 0 /* this */
            getfield io.vertx.core.net.impl.ConnectionBase.chctx:Lio/netty/channel/ChannelHandlerContext;
            invokeinterface io.netty.channel.ChannelHandlerContext.channel:()Lio/netty/channel/Channel;
            getstatic io.vertx.core.net.impl.SslHandshakeCompletionHandler.SERVER_NAME_ATTR:Lio/netty/util/AttributeKey;
            invokeinterface io.netty.channel.Channel.attr:(Lio/netty/util/AttributeKey;)Lio/netty/util/Attribute;
            invokeinterface io.netty.util.Attribute.get:()Ljava/lang/Object;
            checkcast java.lang.String
            areturn
         2: .line 445
      StackMap locals:
      StackMap stack:
            aconst_null
            areturn
        end local 0 // io.vertx.core.net.impl.ConnectionBase this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/vertx/core/net/impl/ConnectionBase;

  public io.netty.channel.ChannelPromise channelFuture();
    descriptor: ()Lio/netty/channel/ChannelPromise;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.net.impl.ConnectionBase this
         0: .line 450
            aload 0 /* this */
            getfield io.vertx.core.net.impl.ConnectionBase.chctx:Lio/netty/channel/ChannelHandlerContext;
            invokeinterface io.netty.channel.ChannelHandlerContext.newPromise:()Lio/netty/channel/ChannelPromise;
            areturn
        end local 0 // io.vertx.core.net.impl.ConnectionBase this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/net/impl/ConnectionBase;

  public java.lang.String remoteName();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=2, args_size=1
        start local 0 // io.vertx.core.net.impl.ConnectionBase this
         0: .line 454
            aload 0 /* this */
            getfield io.vertx.core.net.impl.ConnectionBase.chctx:Lio/netty/channel/ChannelHandlerContext;
            invokeinterface io.netty.channel.ChannelHandlerContext.channel:()Lio/netty/channel/Channel;
            invokeinterface io.netty.channel.Channel.remoteAddress:()Ljava/net/SocketAddress;
            astore 1 /* addr */
        start local 1 // java.net.SocketAddress addr
         1: .line 455
            aload 1 /* addr */
            instanceof java.net.InetSocketAddress
            ifeq 3
         2: .line 457
            aload 1 /* addr */
            checkcast java.net.InetSocketAddress
            invokevirtual java.net.InetSocketAddress.getHostString:()Ljava/lang/String;
            areturn
         3: .line 459
      StackMap locals: java.net.SocketAddress
      StackMap stack:
            aconst_null
            areturn
        end local 1 // java.net.SocketAddress addr
        end local 0 // io.vertx.core.net.impl.ConnectionBase this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lio/vertx/core/net/impl/ConnectionBase;
            1    4     1  addr  Ljava/net/SocketAddress;

  public io.vertx.core.net.SocketAddress remoteAddress();
    descriptor: ()Lio/vertx/core/net/SocketAddress;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // io.vertx.core.net.impl.ConnectionBase this
         0: .line 463
            aload 0 /* this */
            getfield io.vertx.core.net.impl.ConnectionBase.chctx:Lio/netty/channel/ChannelHandlerContext;
            invokeinterface io.netty.channel.ChannelHandlerContext.channel:()Lio/netty/channel/Channel;
            invokeinterface io.netty.channel.Channel.remoteAddress:()Ljava/net/SocketAddress;
            astore 1 /* addr */
        start local 1 // java.net.SocketAddress addr
         1: .line 464
            aload 1 /* addr */
            ifnull 3
         2: .line 465
            aload 0 /* this */
            getfield io.vertx.core.net.impl.ConnectionBase.vertx:Lio/vertx/core/impl/VertxInternal;
            invokeinterface io.vertx.core.impl.VertxInternal.transport:()Lio/vertx/core/net/impl/transport/Transport;
            aload 1 /* addr */
            invokevirtual io.vertx.core.net.impl.transport.Transport.convert:(Ljava/net/SocketAddress;)Lio/vertx/core/net/SocketAddress;
            areturn
         3: .line 467
      StackMap locals: java.net.SocketAddress
      StackMap stack:
            aconst_null
            areturn
        end local 1 // java.net.SocketAddress addr
        end local 0 // io.vertx.core.net.impl.ConnectionBase this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lio/vertx/core/net/impl/ConnectionBase;
            1    4     1  addr  Ljava/net/SocketAddress;

  public io.vertx.core.net.SocketAddress localAddress();
    descriptor: ()Lio/vertx/core/net/SocketAddress;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // io.vertx.core.net.impl.ConnectionBase this
         0: .line 471
            aload 0 /* this */
            getfield io.vertx.core.net.impl.ConnectionBase.chctx:Lio/netty/channel/ChannelHandlerContext;
            invokeinterface io.netty.channel.ChannelHandlerContext.channel:()Lio/netty/channel/Channel;
            invokeinterface io.netty.channel.Channel.localAddress:()Ljava/net/SocketAddress;
            astore 1 /* addr */
        start local 1 // java.net.SocketAddress addr
         1: .line 472
            aload 1 /* addr */
            ifnull 3
         2: .line 473
            aload 0 /* this */
            getfield io.vertx.core.net.impl.ConnectionBase.vertx:Lio/vertx/core/impl/VertxInternal;
            invokeinterface io.vertx.core.impl.VertxInternal.transport:()Lio/vertx/core/net/impl/transport/Transport;
            aload 1 /* addr */
            invokevirtual io.vertx.core.net.impl.transport.Transport.convert:(Ljava/net/SocketAddress;)Lio/vertx/core/net/SocketAddress;
            areturn
         3: .line 475
      StackMap locals: java.net.SocketAddress
      StackMap stack:
            aconst_null
            areturn
        end local 1 // java.net.SocketAddress addr
        end local 0 // io.vertx.core.net.impl.ConnectionBase this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lio/vertx/core/net/impl/ConnectionBase;
            1    4     1  addr  Ljava/net/SocketAddress;

  public void handleMessage(java.lang.Object);
    descriptor: (Ljava/lang/Object;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=0, locals=2, args_size=2
        start local 0 // io.vertx.core.net.impl.ConnectionBase this
        start local 1 // java.lang.Object msg
         0: .line 479
            return
        end local 1 // java.lang.Object msg
        end local 0 // io.vertx.core.net.impl.ConnectionBase this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/net/impl/ConnectionBase;
            0    1     1   msg  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      msg   

  private static void lambda$0(io.vertx.core.Handler, io.netty.util.concurrent.Future);
    descriptor: (Lio/vertx/core/Handler;Lio/netty/util/concurrent/Future;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
        start local 1 // io.netty.util.concurrent.Future fut
         0: .line 139
            aload 1 /* fut */
            invokeinterface io.netty.util.concurrent.Future.isSuccess:()Z
            ifeq 3
         1: .line 140
            aload 0
            invokestatic io.vertx.core.Future.succeededFuture:()Lio/vertx/core/Future;
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
         2: .line 141
            goto 4
         3: .line 142
      StackMap locals:
      StackMap stack:
            aload 0
            aload 1 /* fut */
            invokeinterface io.netty.util.concurrent.Future.cause:()Ljava/lang/Throwable;
            invokestatic io.vertx.core.Future.failedFuture:(Ljava/lang/Throwable;)Lio/vertx/core/Future;
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
         4: .line 144
      StackMap locals:
      StackMap stack:
            return
        end local 1 // io.netty.util.concurrent.Future fut
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     1   fut  Lio/netty/util/concurrent/Future<-Ljava/lang/Void;>;
    Exceptions:
      throws java.lang.Exception

  private void lambda$1(java.lang.Object, io.netty.channel.ChannelPromise);
    descriptor: (Ljava/lang/Object;Lio/netty/channel/ChannelPromise;)V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=4, locals=5, args_size=3
        start local 0 // io.vertx.core.net.impl.ConnectionBase this
         0: .line 168
            aload 0 /* this */
            dup
            astore 4
            monitorenter
         1: .line 169
            aload 0 /* this */
            dup
            getfield io.vertx.core.net.impl.ConnectionBase.writeInProgress:I
            iconst_1
            isub
            dup_x1
            putfield io.vertx.core.net.impl.ConnectionBase.writeInProgress:I
            ifne 2
            aload 0 /* this */
            getfield io.vertx.core.net.impl.ConnectionBase.read:Z
            ifne 2
            iconst_1
            goto 3
      StackMap locals: io.vertx.core.net.impl.ConnectionBase java.lang.Object io.netty.channel.ChannelPromise top io.vertx.core.net.impl.ConnectionBase
      StackMap stack:
         2: iconst_0
      StackMap locals:
      StackMap stack: int
         3: istore 3 /* flush */
        start local 3 // boolean flush
         4: .line 168
            aload 4
            monitorexit
         5: goto 8
        end local 3 // boolean flush
      StackMap locals:
      StackMap stack: java.lang.Throwable
         6: aload 4
            monitorexit
         7: athrow
        start local 3 // boolean flush
         8: .line 171
      StackMap locals: io.vertx.core.net.impl.ConnectionBase java.lang.Object io.netty.channel.ChannelPromise int
      StackMap stack:
            aload 0 /* this */
            aload 1
            iload 3 /* flush */
            aload 2
            invokevirtual io.vertx.core.net.impl.ConnectionBase.write:(Ljava/lang/Object;ZLio/netty/channel/ChannelPromise;)V
        end local 3 // boolean flush
         9: .line 172
            return
        end local 0 // io.vertx.core.net.impl.ConnectionBase this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   10     0   this  Lio/vertx/core/net/impl/ConnectionBase;
            4    6     3  flush  Z
            8    9     3  flush  Z
      Exception table:
        from    to  target  type
           1     5       6  any
           6     7       6  any

  private void lambda$2(io.netty.channel.ChannelPromise);
    descriptor: (Lio/netty/channel/ChannelPromise;)V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.net.impl.ConnectionBase this
         0: .line 200
            aload 0 /* this */
            aload 1
            invokevirtual io.vertx.core.net.impl.ConnectionBase.flush:(Lio/netty/channel/ChannelPromise;)V
            return
        end local 0 // io.vertx.core.net.impl.ConnectionBase this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/net/impl/ConnectionBase;

  private void lambda$3(io.vertx.core.Handler, io.netty.channel.ChannelFuture);
    descriptor: (Lio/vertx/core/Handler;Lio/netty/channel/ChannelFuture;)V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=6, locals=4, args_size=3
        start local 0 // io.vertx.core.net.impl.ConnectionBase this
        start local 2 // io.netty.channel.ChannelFuture f
         0: .line 224
            aload 0 /* this */
            getfield io.vertx.core.net.impl.ConnectionBase.chctx:Lio/netty/channel/ChannelHandlerContext;
            invokeinterface io.netty.channel.ChannelHandlerContext.channel:()Lio/netty/channel/Channel;
            invokeinterface io.netty.channel.Channel.close:()Lio/netty/channel/ChannelFuture;
            astore 3 /* closeFut */
        start local 3 // io.netty.channel.ChannelFuture closeFut
         1: .line 225
            aload 1
            ifnull 3
         2: .line 226
            aload 3 /* closeFut */
            new io.vertx.core.net.impl.ChannelFutureListenerAdapter
            dup
            aload 0 /* this */
            getfield io.vertx.core.net.impl.ConnectionBase.context:Lio/vertx/core/impl/ContextInternal;
            aconst_null
            aload 1
            invokespecial io.vertx.core.net.impl.ChannelFutureListenerAdapter.<init>:(Lio/vertx/core/impl/ContextInternal;Ljava/lang/Object;Lio/vertx/core/Handler;)V
            invokeinterface io.netty.channel.ChannelFuture.addListener:(Lio/netty/util/concurrent/GenericFutureListener;)Lio/netty/channel/ChannelFuture;
            pop
        end local 3 // io.netty.channel.ChannelFuture closeFut
         3: .line 228
      StackMap locals:
      StackMap stack:
            return
        end local 2 // io.netty.channel.ChannelFuture f
        end local 0 // io.vertx.core.net.impl.ConnectionBase this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    4     0      this  Lio/vertx/core/net/impl/ConnectionBase;
            0    4     2         f  Lio/netty/channel/ChannelFuture;
            1    3     3  closeFut  Lio/netty/channel/ChannelFuture;
    Exceptions:
      throws java.lang.Exception

  private void lambda$4(io.vertx.core.Handler, io.netty.util.concurrent.Future);
    descriptor: (Lio/vertx/core/Handler;Lio/netty/util/concurrent/Future;)V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // io.vertx.core.net.impl.ConnectionBase this
        start local 2 // io.netty.util.concurrent.Future channelFuture
         0: .line 336
            aload 0 /* this */
            getfield io.vertx.core.net.impl.ConnectionBase.context:Lio/vertx/core/impl/ContextInternal;
            aload 0 /* this */
            aload 1
            aload 2 /* channelFuture */
            invokedynamic handle(Lio/vertx/core/net/impl/ConnectionBase;Lio/vertx/core/Handler;Lio/netty/util/concurrent/Future;)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/net/impl/ConnectionBase.lambda$5(Lio/vertx/core/Handler;Lio/netty/util/concurrent/Future;Ljava/lang/Void;)V (7)
                  (Ljava/lang/Void;)V
            invokeinterface io.vertx.core.impl.ContextInternal.executeFromIO:(Lio/vertx/core/Handler;)V
         1: .line 346
            return
        end local 2 // io.netty.util.concurrent.Future channelFuture
        end local 0 // io.vertx.core.net.impl.ConnectionBase this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    2     0           this  Lio/vertx/core/net/impl/ConnectionBase;
            0    2     2  channelFuture  Lio/netty/util/concurrent/Future<-Ljava/lang/Void;>;
    Exceptions:
      throws java.lang.Exception

  private void lambda$6(java.io.RandomAccessFile, long, long, io.netty.channel.ChannelPromise, io.netty.util.concurrent.Future);
    descriptor: (Ljava/io/RandomAccessFile;JJLio/netty/channel/ChannelPromise;Lio/netty/util/concurrent/Future;)V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=8, locals=8, args_size=6
        start local 0 // io.vertx.core.net.impl.ConnectionBase this
        start local 7 // io.netty.util.concurrent.Future future
         0: .line 390
            aload 7 /* future */
            invokeinterface io.netty.util.concurrent.Future.isSuccess:()Z
            ifeq 3
         1: .line 391
            aload 0 /* this */
            aload 1
            lload 2
            ldc 1048576
            ladd
            lload 4
            ldc 1048576
            lsub
            aload 6
            invokevirtual io.vertx.core.net.impl.ConnectionBase.sendFileRegion:(Ljava/io/RandomAccessFile;JJLio/netty/channel/ChannelPromise;)V
         2: .line 392
            goto 5
         3: .line 393
      StackMap locals:
      StackMap stack:
            getstatic io.vertx.core.net.impl.ConnectionBase.log:Lio/vertx/core/logging/Logger;
            aload 7 /* future */
            invokeinterface io.netty.util.concurrent.Future.cause:()Ljava/lang/Throwable;
            invokevirtual java.lang.Throwable.getMessage:()Ljava/lang/String;
            aload 7 /* future */
            invokeinterface io.netty.util.concurrent.Future.cause:()Ljava/lang/Throwable;
            invokevirtual io.vertx.core.logging.Logger.error:(Ljava/lang/Object;Ljava/lang/Throwable;)V
         4: .line 394
            aload 6
            aload 7 /* future */
            invokeinterface io.netty.util.concurrent.Future.cause:()Ljava/lang/Throwable;
            invokeinterface io.netty.channel.ChannelPromise.setFailure:(Ljava/lang/Throwable;)Lio/netty/channel/ChannelPromise;
            pop
         5: .line 396
      StackMap locals:
      StackMap stack:
            return
        end local 7 // io.netty.util.concurrent.Future future
        end local 0 // io.vertx.core.net.impl.ConnectionBase this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    6     0    this  Lio/vertx/core/net/impl/ConnectionBase;
            0    6     7  future  Lio/netty/util/concurrent/Future<-Ljava/lang/Void;>;
    Exceptions:
      throws java.lang.Exception

  private static void lambda$7(java.io.RandomAccessFile, io.netty.util.concurrent.Future);
    descriptor: (Ljava/io/RandomAccessFile;Lio/netty/util/concurrent/Future;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=1, locals=2, args_size=2
        start local 1 // io.netty.util.concurrent.Future fut
         0: .line 411
            aload 0
            invokevirtual java.io.RandomAccessFile.close:()V
            return
        end local 1 // io.netty.util.concurrent.Future fut
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     1   fut  Lio/netty/util/concurrent/Future<-Ljava/lang/Void;>;
    Exceptions:
      throws java.lang.Exception

  private void lambda$5(io.vertx.core.Handler, io.netty.util.concurrent.Future, java.lang.Void);
    descriptor: (Lio/vertx/core/Handler;Lio/netty/util/concurrent/Future;Ljava/lang/Void;)V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=2, locals=4, args_size=4
        start local 0 // io.vertx.core.net.impl.ConnectionBase this
        start local 3 // java.lang.Void v
         0: .line 337
            aload 1
            ifnull 6
         1: .line 338
            aload 2
            invokeinterface io.netty.util.concurrent.Future.isSuccess:()Z
            ifeq 4
         2: .line 339
            aload 1
            invokestatic io.vertx.core.Future.succeededFuture:()Lio/vertx/core/Future;
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
         3: .line 340
            goto 8
         4: .line 341
      StackMap locals:
      StackMap stack:
            aload 1
            aload 2
            invokeinterface io.netty.util.concurrent.Future.cause:()Ljava/lang/Throwable;
            invokestatic io.vertx.core.Future.failedFuture:(Ljava/lang/Throwable;)Lio/vertx/core/Future;
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
         5: .line 343
            goto 8
      StackMap locals:
      StackMap stack:
         6: aload 2
            invokeinterface io.netty.util.concurrent.Future.isSuccess:()Z
            ifne 8
         7: .line 344
            aload 0 /* this */
            aload 2
            invokeinterface io.netty.util.concurrent.Future.cause:()Ljava/lang/Throwable;
            invokevirtual io.vertx.core.net.impl.ConnectionBase.handleException:(Ljava/lang/Throwable;)V
         8: .line 346
      StackMap locals:
      StackMap stack:
            return
        end local 3 // java.lang.Void v
        end local 0 // io.vertx.core.net.impl.ConnectionBase this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0  this  Lio/vertx/core/net/impl/ConnectionBase;
            0    9     3     v  Ljava/lang/Void;
}
SourceFile: "ConnectionBase.java"
InnerClasses:
  public final Lookup = java.lang.invoke.MethodHandles$Lookup of java.lang.invoke.MethodHandles