class io.vertx.ext.mail.impl.SMTPConnection
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: io.vertx.ext.mail.impl.SMTPConnection
  super_class: java.lang.Object
{
  private static final io.vertx.core.logging.Logger log;
    descriptor: Lio/vertx/core/logging/Logger;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private io.vertx.core.net.NetSocket ns;
    descriptor: Lio/vertx/core/net/NetSocket;
    flags: (0x0002) ACC_PRIVATE

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

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

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

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

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

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

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

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

  private io.vertx.ext.mail.impl.Capabilities capa;
    descriptor: Lio/vertx/ext/mail/impl/Capabilities;
    flags: (0x0002) ACC_PRIVATE

  private final io.vertx.ext.mail.impl.ConnectionLifeCycleListener listener;
    descriptor: Lio/vertx/ext/mail/impl/ConnectionLifeCycleListener;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

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

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

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

  void <init>(io.vertx.core.net.NetClient, io.vertx.ext.mail.impl.ConnectionLifeCycleListener);
    descriptor: (Lio/vertx/core/net/NetClient;Lio/vertx/ext/mail/impl/ConnectionLifeCycleListener;)V
    flags: (0x0000) 
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.vertx.ext.mail.impl.SMTPConnection this
        start local 1 // io.vertx.core.net.NetClient client
        start local 2 // io.vertx.ext.mail.impl.ConnectionLifeCycleListener listener
         0: .line 54
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 50
            aload 0 /* this */
            new io.vertx.ext.mail.impl.Capabilities
            dup
            invokespecial io.vertx.ext.mail.impl.Capabilities.<init>:()V
            putfield io.vertx.ext.mail.impl.SMTPConnection.capa:Lio/vertx/ext/mail/impl/Capabilities;
         2: .line 311
            aload 0 /* this */
            aconst_null
            putfield io.vertx.ext.mail.impl.SMTPConnection.prevErrorHandler:Lio/vertx/core/Handler;
         3: .line 55
            aload 0 /* this */
            iconst_1
            putfield io.vertx.ext.mail.impl.SMTPConnection.broken:Z
         4: .line 56
            aload 0 /* this */
            iconst_0
            putfield io.vertx.ext.mail.impl.SMTPConnection.idle:Z
         5: .line 57
            aload 0 /* this */
            iconst_0
            putfield io.vertx.ext.mail.impl.SMTPConnection.doShutdown:Z
         6: .line 58
            aload 0 /* this */
            iconst_0
            putfield io.vertx.ext.mail.impl.SMTPConnection.socketClosed:Z
         7: .line 59
            aload 0 /* this */
            iconst_0
            putfield io.vertx.ext.mail.impl.SMTPConnection.socketShutDown:Z
         8: .line 60
            aload 0 /* this */
            aload 1 /* client */
            putfield io.vertx.ext.mail.impl.SMTPConnection.client:Lio/vertx/core/net/NetClient;
         9: .line 61
            aload 0 /* this */
            aload 2 /* listener */
            putfield io.vertx.ext.mail.impl.SMTPConnection.listener:Lio/vertx/ext/mail/impl/ConnectionLifeCycleListener;
        10: .line 62
            return
        end local 2 // io.vertx.ext.mail.impl.ConnectionLifeCycleListener listener
        end local 1 // io.vertx.core.net.NetClient client
        end local 0 // io.vertx.ext.mail.impl.SMTPConnection this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   11     0      this  Lio/vertx/ext/mail/impl/SMTPConnection;
            0   11     1    client  Lio/vertx/core/net/NetClient;
            0   11     2  listener  Lio/vertx/ext/mail/impl/ConnectionLifeCycleListener;
    MethodParameters:
          Name  Flags
      client    
      listener  

  io.vertx.ext.mail.impl.Capabilities getCapa();
    descriptor: ()Lio/vertx/ext/mail/impl/Capabilities;
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.ext.mail.impl.SMTPConnection this
         0: .line 68
            aload 0 /* this */
            getfield io.vertx.ext.mail.impl.SMTPConnection.capa:Lio/vertx/ext/mail/impl/Capabilities;
            areturn
        end local 0 // io.vertx.ext.mail.impl.SMTPConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/mail/impl/SMTPConnection;

  void parseCapabilities(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0000) 
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.vertx.ext.mail.impl.SMTPConnection this
        start local 1 // java.lang.String message
         0: .line 77
            aload 0 /* this */
            new io.vertx.ext.mail.impl.Capabilities
            dup
            invokespecial io.vertx.ext.mail.impl.Capabilities.<init>:()V
            putfield io.vertx.ext.mail.impl.SMTPConnection.capa:Lio/vertx/ext/mail/impl/Capabilities;
         1: .line 78
            aload 0 /* this */
            getfield io.vertx.ext.mail.impl.SMTPConnection.capa:Lio/vertx/ext/mail/impl/Capabilities;
            aload 1 /* message */
            invokevirtual io.vertx.ext.mail.impl.Capabilities.parseCapabilities:(Ljava/lang/String;)V
         2: .line 79
            return
        end local 1 // java.lang.String message
        end local 0 // io.vertx.ext.mail.impl.SMTPConnection this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0     this  Lio/vertx/ext/mail/impl/SMTPConnection;
            0    3     1  message  Ljava/lang/String;
    MethodParameters:
         Name  Flags
      message  

  void shutdown();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.vertx.ext.mail.impl.SMTPConnection this
         0: .line 82
            aload 0 /* this */
            iconst_1
            putfield io.vertx.ext.mail.impl.SMTPConnection.broken:Z
         1: .line 83
            aload 0 /* this */
            aconst_null
            putfield io.vertx.ext.mail.impl.SMTPConnection.commandReplyHandler:Lio/vertx/core/Handler;
         2: .line 84
            aload 0 /* this */
            iconst_1
            putfield io.vertx.ext.mail.impl.SMTPConnection.socketShutDown:Z
         3: .line 85
            aload 0 /* this */
            getfield io.vertx.ext.mail.impl.SMTPConnection.ns:Lio/vertx/core/net/NetSocket;
            ifnull 6
         4: .line 86
            aload 0 /* this */
            getfield io.vertx.ext.mail.impl.SMTPConnection.ns:Lio/vertx/core/net/NetSocket;
            invokeinterface io.vertx.core.net.NetSocket.close:()V
         5: .line 87
            aload 0 /* this */
            aconst_null
            putfield io.vertx.ext.mail.impl.SMTPConnection.ns:Lio/vertx/core/net/NetSocket;
         6: .line 89
      StackMap locals:
      StackMap stack:
            return
        end local 0 // io.vertx.ext.mail.impl.SMTPConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lio/vertx/ext/mail/impl/SMTPConnection;

  void write(java.lang.String, io.vertx.core.Handler<java.lang.String>);
    descriptor: (Ljava/lang/String;Lio/vertx/core/Handler;)V
    flags: (0x0000) 
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // io.vertx.ext.mail.impl.SMTPConnection this
        start local 1 // java.lang.String str
        start local 2 // io.vertx.core.Handler commandResultHandler
         0: .line 95
            aload 0 /* this */
            aload 1 /* str */
            iconst_m1
            aload 2 /* commandResultHandler */
            invokevirtual io.vertx.ext.mail.impl.SMTPConnection.write:(Ljava/lang/String;ILio/vertx/core/Handler;)V
         1: .line 96
            return
        end local 2 // io.vertx.core.Handler commandResultHandler
        end local 1 // java.lang.String str
        end local 0 // io.vertx.ext.mail.impl.SMTPConnection this
      LocalVariableTable:
        Start  End  Slot                  Name  Signature
            0    2     0                  this  Lio/vertx/ext/mail/impl/SMTPConnection;
            0    2     1                   str  Ljava/lang/String;
            0    2     2  commandResultHandler  Lio/vertx/core/Handler<Ljava/lang/String;>;
    Signature: (Ljava/lang/String;Lio/vertx/core/Handler<Ljava/lang/String;>;)V
    MethodParameters:
                      Name  Flags
      str                   
      commandResultHandler  

  void write(java.lang.String, int, io.vertx.core.Handler<java.lang.String>);
    descriptor: (Ljava/lang/String;ILio/vertx/core/Handler;)V
    flags: (0x0000) 
    Code:
      stack=5, locals=7, args_size=4
        start local 0 // io.vertx.ext.mail.impl.SMTPConnection this
        start local 1 // java.lang.String str
        start local 2 // int blank
        start local 3 // io.vertx.core.Handler commandResultHandler
         0: .line 102
            aload 0 /* this */
            aload 3 /* commandResultHandler */
            putfield io.vertx.ext.mail.impl.SMTPConnection.commandReplyHandler:Lio/vertx/core/Handler;
         1: .line 103
            aload 0 /* this */
            getfield io.vertx.ext.mail.impl.SMTPConnection.socketClosed:Z
            ifeq 5
         2: .line 104
            getstatic io.vertx.ext.mail.impl.SMTPConnection.log:Lio/vertx/core/logging/Logger;
            ldc "connection was closed by server"
            invokevirtual io.vertx.core.logging.Logger.debug:(Ljava/lang/Object;)V
         3: .line 105
            aload 0 /* this */
            ldc "connection was closed by server"
            invokevirtual io.vertx.ext.mail.impl.SMTPConnection.handleError:(Ljava/lang/String;)V
         4: .line 106
            goto 24
         5: .line 107
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.ext.mail.impl.SMTPConnection.ns:Lio/vertx/core/net/NetSocket;
            ifnull 23
         6: .line 108
            getstatic io.vertx.ext.mail.impl.SMTPConnection.log:Lio/vertx/core/logging/Logger;
            invokevirtual io.vertx.core.logging.Logger.isDebugEnabled:()Z
            ifeq 21
         7: .line 110
            iload 2 /* blank */
            iflt 16
         8: .line 111
            new java.lang.StringBuilder
            dup
            invokespecial java.lang.StringBuilder.<init>:()V
            astore 5 /* sb */
        start local 5 // java.lang.StringBuilder sb
         9: .line 112
            iload 2 /* blank */
            istore 6 /* i */
        start local 6 // int i
        10: goto 13
        11: .line 113
      StackMap locals: io.vertx.ext.mail.impl.SMTPConnection java.lang.String int io.vertx.core.Handler top java.lang.StringBuilder int
      StackMap stack:
            aload 5 /* sb */
            bipush 42
            invokevirtual java.lang.StringBuilder.append:(C)Ljava/lang/StringBuilder;
            pop
        12: .line 112
            iinc 6 /* i */ 1
      StackMap locals:
      StackMap stack:
        13: iload 6 /* i */
            aload 1 /* str */
            invokevirtual java.lang.String.length:()I
            if_icmplt 11
        end local 6 // int i
        14: .line 115
            new java.lang.StringBuilder
            dup
            aload 1 /* str */
            iconst_0
            iload 2 /* blank */
            invokevirtual java.lang.String.substring:(II)Ljava/lang/String;
            invokestatic java.lang.String.valueOf:(Ljava/lang/Object;)Ljava/lang/String;
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 5 /* sb */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            astore 4 /* logStr */
        end local 5 // java.lang.StringBuilder sb
        start local 4 // java.lang.String logStr
        15: .line 116
            goto 17
        end local 4 // java.lang.String logStr
        16: .line 117
      StackMap locals: io.vertx.ext.mail.impl.SMTPConnection java.lang.String int io.vertx.core.Handler
      StackMap stack:
            aload 1 /* str */
            astore 4 /* logStr */
        start local 4 // java.lang.String logStr
        17: .line 120
      StackMap locals: java.lang.String
      StackMap stack:
            aload 4 /* logStr */
            invokevirtual java.lang.String.length:()I
            sipush 1000
            if_icmpge 20
        18: .line 121
            getstatic io.vertx.ext.mail.impl.SMTPConnection.log:Lio/vertx/core/logging/Logger;
            new java.lang.StringBuilder
            dup
            ldc "command: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 4 /* logStr */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokevirtual io.vertx.core.logging.Logger.debug:(Ljava/lang/Object;)V
        19: .line 122
            goto 21
        20: .line 123
      StackMap locals:
      StackMap stack:
            getstatic io.vertx.ext.mail.impl.SMTPConnection.log:Lio/vertx/core/logging/Logger;
            new java.lang.StringBuilder
            dup
            ldc "command: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 4 /* logStr */
            iconst_0
            sipush 1000
            invokevirtual java.lang.String.substring:(II)Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc "..."
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokevirtual io.vertx.core.logging.Logger.debug:(Ljava/lang/Object;)V
        end local 4 // java.lang.String logStr
        21: .line 126
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.ext.mail.impl.SMTPConnection.ns:Lio/vertx/core/net/NetSocket;
            new java.lang.StringBuilder
            dup
            aload 1 /* str */
            invokestatic java.lang.String.valueOf:(Ljava/lang/Object;)Ljava/lang/String;
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            ldc "\r\n"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokeinterface io.vertx.core.net.NetSocket.write:(Ljava/lang/String;)Lio/vertx/core/net/NetSocket;
            pop
        22: .line 127
            goto 24
        23: .line 128
      StackMap locals:
      StackMap stack:
            getstatic io.vertx.ext.mail.impl.SMTPConnection.log:Lio/vertx/core/logging/Logger;
            new java.lang.StringBuilder
            dup
            ldc "not sending command "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 1 /* str */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc " since the netsocket is null"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokevirtual io.vertx.core.logging.Logger.debug:(Ljava/lang/Object;)V
        24: .line 131
      StackMap locals:
      StackMap stack:
            return
        end local 3 // io.vertx.core.Handler commandResultHandler
        end local 2 // int blank
        end local 1 // java.lang.String str
        end local 0 // io.vertx.ext.mail.impl.SMTPConnection this
      LocalVariableTable:
        Start  End  Slot                  Name  Signature
            0   25     0                  this  Lio/vertx/ext/mail/impl/SMTPConnection;
            0   25     1                   str  Ljava/lang/String;
            0   25     2                 blank  I
            0   25     3  commandResultHandler  Lio/vertx/core/Handler<Ljava/lang/String;>;
           15   16     4                logStr  Ljava/lang/String;
           17   21     4                logStr  Ljava/lang/String;
            9   15     5                    sb  Ljava/lang/StringBuilder;
           10   14     6                     i  I
    Signature: (Ljava/lang/String;ILio/vertx/core/Handler<Ljava/lang/String;>;)V
    MethodParameters:
                      Name  Flags
      str                   
      blank                 
      commandResultHandler  

  void writeLine(java.lang.String, boolean);
    descriptor: (Ljava/lang/String;Z)V
    flags: (0x0000) 
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // io.vertx.ext.mail.impl.SMTPConnection this
        start local 1 // java.lang.String str
        start local 2 // boolean mayLog
         0: .line 135
            iload 2 /* mayLog */
            ifeq 2
         1: .line 136
            getstatic io.vertx.ext.mail.impl.SMTPConnection.log:Lio/vertx/core/logging/Logger;
            aload 1 /* str */
            invokevirtual io.vertx.core.logging.Logger.debug:(Ljava/lang/Object;)V
         2: .line 138
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.ext.mail.impl.SMTPConnection.ns:Lio/vertx/core/net/NetSocket;
            new java.lang.StringBuilder
            dup
            aload 1 /* str */
            invokestatic java.lang.String.valueOf:(Ljava/lang/Object;)Ljava/lang/String;
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            ldc "\r\n"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokeinterface io.vertx.core.net.NetSocket.write:(Ljava/lang/String;)Lio/vertx/core/net/NetSocket;
            pop
         3: .line 139
            return
        end local 2 // boolean mayLog
        end local 1 // java.lang.String str
        end local 0 // io.vertx.ext.mail.impl.SMTPConnection this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    4     0    this  Lio/vertx/ext/mail/impl/SMTPConnection;
            0    4     1     str  Ljava/lang/String;
            0    4     2  mayLog  Z
    MethodParameters:
        Name  Flags
      str     
      mayLog  

  void writeLineWithDrainHandler(java.lang.String, boolean, io.vertx.core.Handler<java.lang.Void>);
    descriptor: (Ljava/lang/String;ZLio/vertx/core/Handler;)V
    flags: (0x0000) 
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // io.vertx.ext.mail.impl.SMTPConnection this
        start local 1 // java.lang.String str
        start local 2 // boolean mayLog
        start local 3 // io.vertx.core.Handler handler
         0: .line 143
            iload 2 /* mayLog */
            ifeq 2
         1: .line 144
            getstatic io.vertx.ext.mail.impl.SMTPConnection.log:Lio/vertx/core/logging/Logger;
            aload 1 /* str */
            invokevirtual io.vertx.core.logging.Logger.debug:(Ljava/lang/Object;)V
         2: .line 146
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.ext.mail.impl.SMTPConnection.ns:Lio/vertx/core/net/NetSocket;
            invokeinterface io.vertx.core.net.NetSocket.writeQueueFull:()Z
            ifeq 5
         3: .line 147
            aload 0 /* this */
            getfield io.vertx.ext.mail.impl.SMTPConnection.ns:Lio/vertx/core/net/NetSocket;
            aload 0 /* this */
            aload 1 /* str */
            aload 3 /* handler */
            invokedynamic handle(Lio/vertx/ext/mail/impl/SMTPConnection;Ljava/lang/String;Lio/vertx/core/Handler;)Lio/vertx/core/Handler;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;)V
                  io/vertx/ext/mail/impl/SMTPConnection.lambda$0(Ljava/lang/String;Lio/vertx/core/Handler;Ljava/lang/Void;)V (7)
                  (Ljava/lang/Void;)V
            invokeinterface io.vertx.core.net.NetSocket.drainHandler:(Lio/vertx/core/Handler;)Lio/vertx/core/net/NetSocket;
            pop
         4: .line 153
            goto 7
         5: .line 154
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.ext.mail.impl.SMTPConnection.ns:Lio/vertx/core/net/NetSocket;
            new java.lang.StringBuilder
            dup
            aload 1 /* str */
            invokestatic java.lang.String.valueOf:(Ljava/lang/Object;)Ljava/lang/String;
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            ldc "\r\n"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokeinterface io.vertx.core.net.NetSocket.write:(Ljava/lang/String;)Lio/vertx/core/net/NetSocket;
            pop
         6: .line 155
            aload 3 /* handler */
            aconst_null
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
         7: .line 157
      StackMap locals:
      StackMap stack:
            return
        end local 3 // io.vertx.core.Handler handler
        end local 2 // boolean mayLog
        end local 1 // java.lang.String str
        end local 0 // io.vertx.ext.mail.impl.SMTPConnection this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    8     0     this  Lio/vertx/ext/mail/impl/SMTPConnection;
            0    8     1      str  Ljava/lang/String;
            0    8     2   mayLog  Z
            0    8     3  handler  Lio/vertx/core/Handler<Ljava/lang/Void;>;
    Signature: (Ljava/lang/String;ZLio/vertx/core/Handler<Ljava/lang/Void;>;)V
    MethodParameters:
         Name  Flags
      str      
      mayLog   
      handler  

  boolean writeQueueFull();
    descriptor: ()Z
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.ext.mail.impl.SMTPConnection this
         0: .line 160
            aload 0 /* this */
            getfield io.vertx.ext.mail.impl.SMTPConnection.ns:Lio/vertx/core/net/NetSocket;
            invokeinterface io.vertx.core.net.NetSocket.writeQueueFull:()Z
            ireturn
        end local 0 // io.vertx.ext.mail.impl.SMTPConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/mail/impl/SMTPConnection;

  private void handleError(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // io.vertx.ext.mail.impl.SMTPConnection this
        start local 1 // java.lang.String message
         0: .line 164
            aload 0 /* this */
            new io.vertx.core.impl.NoStackTraceThrowable
            dup
            aload 1 /* message */
            invokespecial io.vertx.core.impl.NoStackTraceThrowable.<init>:(Ljava/lang/String;)V
            invokevirtual io.vertx.ext.mail.impl.SMTPConnection.handleError:(Ljava/lang/Throwable;)V
         1: .line 165
            return
        end local 1 // java.lang.String message
        end local 0 // io.vertx.ext.mail.impl.SMTPConnection this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lio/vertx/ext/mail/impl/SMTPConnection;
            0    2     1  message  Ljava/lang/String;
    MethodParameters:
         Name  Flags
      message  

  private void handleError(java.lang.Throwable);
    descriptor: (Ljava/lang/Throwable;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.mail.impl.SMTPConnection this
        start local 1 // java.lang.Throwable throwable
         0: .line 168
            aload 0 /* this */
            getfield io.vertx.ext.mail.impl.SMTPConnection.errorHandler:Lio/vertx/core/Handler;
            aload 1 /* throwable */
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
         1: .line 169
            return
        end local 1 // java.lang.Throwable throwable
        end local 0 // io.vertx.ext.mail.impl.SMTPConnection this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lio/vertx/ext/mail/impl/SMTPConnection;
            0    2     1  throwable  Ljava/lang/Throwable;
    MethodParameters:
           Name  Flags
      throwable  

  public void openConnection(io.vertx.ext.mail.MailConfig, io.vertx.core.Handler<java.lang.String>, io.vertx.core.Handler<java.lang.Throwable>);
    descriptor: (Lio/vertx/ext/mail/MailConfig;Lio/vertx/core/Handler;Lio/vertx/core/Handler;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=4
        start local 0 // io.vertx.ext.mail.impl.SMTPConnection this
        start local 1 // io.vertx.ext.mail.MailConfig config
        start local 2 // io.vertx.core.Handler initialReplyHandler
        start local 3 // io.vertx.core.Handler errorHandler
         0: .line 172
            aload 0 /* this */
            aload 3 /* errorHandler */
            putfield io.vertx.ext.mail.impl.SMTPConnection.errorHandler:Lio/vertx/core/Handler;
         1: .line 173
            aload 0 /* this */
            iconst_0
            putfield io.vertx.ext.mail.impl.SMTPConnection.broken:Z
         2: .line 174
            aload 0 /* this */
            iconst_0
            putfield io.vertx.ext.mail.impl.SMTPConnection.idle:Z
         3: .line 176
            aload 0 /* this */
            getfield io.vertx.ext.mail.impl.SMTPConnection.client:Lio/vertx/core/net/NetClient;
            aload 1 /* config */
            invokevirtual io.vertx.ext.mail.MailConfig.getPort:()I
            aload 1 /* config */
            invokevirtual io.vertx.ext.mail.MailConfig.getHostname:()Ljava/lang/String;
            aload 0 /* this */
            aload 2 /* initialReplyHandler */
            invokedynamic handle(Lio/vertx/ext/mail/impl/SMTPConnection;Lio/vertx/core/Handler;)Lio/vertx/core/Handler;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;)V
                  io/vertx/ext/mail/impl/SMTPConnection.lambda$1(Lio/vertx/core/Handler;Lio/vertx/core/AsyncResult;)V (7)
                  (Lio/vertx/core/AsyncResult;)V
            invokeinterface io.vertx.core.net.NetClient.connect:(ILjava/lang/String;Lio/vertx/core/Handler;)Lio/vertx/core/net/NetClient;
            pop
         4: .line 235
            return
        end local 3 // io.vertx.core.Handler errorHandler
        end local 2 // io.vertx.core.Handler initialReplyHandler
        end local 1 // io.vertx.ext.mail.MailConfig config
        end local 0 // io.vertx.ext.mail.impl.SMTPConnection this
      LocalVariableTable:
        Start  End  Slot                 Name  Signature
            0    5     0                 this  Lio/vertx/ext/mail/impl/SMTPConnection;
            0    5     1               config  Lio/vertx/ext/mail/MailConfig;
            0    5     2  initialReplyHandler  Lio/vertx/core/Handler<Ljava/lang/String;>;
            0    5     3         errorHandler  Lio/vertx/core/Handler<Ljava/lang/Throwable;>;
    Signature: (Lio/vertx/ext/mail/MailConfig;Lio/vertx/core/Handler<Ljava/lang/String;>;Lio/vertx/core/Handler<Ljava/lang/Throwable;>;)V
    MethodParameters:
                     Name  Flags
      config               
      initialReplyHandler  
      errorHandler         

  boolean isSsl();
    descriptor: ()Z
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.ext.mail.impl.SMTPConnection this
         0: .line 238
            aload 0 /* this */
            getfield io.vertx.ext.mail.impl.SMTPConnection.ns:Lio/vertx/core/net/NetSocket;
            invokeinterface io.vertx.core.net.NetSocket.isSsl:()Z
            ireturn
        end local 0 // io.vertx.ext.mail.impl.SMTPConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/mail/impl/SMTPConnection;

  void upgradeToSsl(io.vertx.core.Handler<java.lang.Void>);
    descriptor: (Lio/vertx/core/Handler;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.mail.impl.SMTPConnection this
        start local 1 // io.vertx.core.Handler handler
         0: .line 242
            aload 0 /* this */
            getfield io.vertx.ext.mail.impl.SMTPConnection.ns:Lio/vertx/core/net/NetSocket;
            aload 1 /* handler */
            invokeinterface io.vertx.core.net.NetSocket.upgradeToSsl:(Lio/vertx/core/Handler;)Lio/vertx/core/net/NetSocket;
            pop
         1: .line 243
            return
        end local 1 // io.vertx.core.Handler handler
        end local 0 // io.vertx.ext.mail.impl.SMTPConnection this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lio/vertx/ext/mail/impl/SMTPConnection;
            0    2     1  handler  Lio/vertx/core/Handler<Ljava/lang/Void;>;
    Signature: (Lio/vertx/core/Handler<Ljava/lang/Void;>;)V
    MethodParameters:
         Name  Flags
      handler  

  public boolean isBroken();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.ext.mail.impl.SMTPConnection this
         0: .line 246
            aload 0 /* this */
            getfield io.vertx.ext.mail.impl.SMTPConnection.broken:Z
            ireturn
        end local 0 // io.vertx.ext.mail.impl.SMTPConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/mail/impl/SMTPConnection;

  public boolean isIdle();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.ext.mail.impl.SMTPConnection this
         0: .line 250
            aload 0 /* this */
            getfield io.vertx.ext.mail.impl.SMTPConnection.idle:Z
            ireturn
        end local 0 // io.vertx.ext.mail.impl.SMTPConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/mail/impl/SMTPConnection;

  public void returnToPool();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.vertx.ext.mail.impl.SMTPConnection this
         0: .line 254
            aload 0 /* this */
            invokevirtual io.vertx.ext.mail.impl.SMTPConnection.isIdle:()Z
            ifeq 4
         1: .line 255
            getstatic io.vertx.ext.mail.impl.SMTPConnection.log:Lio/vertx/core/logging/Logger;
            ldc "state error: idle connection returned to pool"
            invokevirtual io.vertx.core.logging.Logger.info:(Ljava/lang/Object;)V
         2: .line 256
            aload 0 /* this */
            ldc "state error: idle connection returned to pool"
            invokevirtual io.vertx.ext.mail.impl.SMTPConnection.handleError:(Ljava/lang/String;)V
         3: .line 257
            goto 13
         4: .line 258
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.ext.mail.impl.SMTPConnection.doShutdown:Z
            ifeq 8
         5: .line 259
            getstatic io.vertx.ext.mail.impl.SMTPConnection.log:Lio/vertx/core/logging/Logger;
            ldc "shutting connection down"
            invokevirtual io.vertx.core.logging.Logger.debug:(Ljava/lang/Object;)V
         6: .line 260
            aload 0 /* this */
            invokevirtual io.vertx.ext.mail.impl.SMTPConnection.quitCloseConnection:()V
         7: .line 261
            goto 13
         8: .line 262
      StackMap locals:
      StackMap stack:
            getstatic io.vertx.ext.mail.impl.SMTPConnection.log:Lio/vertx/core/logging/Logger;
            ldc "returning connection to pool"
            invokevirtual io.vertx.core.logging.Logger.debug:(Ljava/lang/Object;)V
         9: .line 263
            aload 0 /* this */
            aconst_null
            putfield io.vertx.ext.mail.impl.SMTPConnection.commandReplyHandler:Lio/vertx/core/Handler;
        10: .line 264
            aload 0 /* this */
            getfield io.vertx.ext.mail.impl.SMTPConnection.listener:Lio/vertx/ext/mail/impl/ConnectionLifeCycleListener;
            aload 0 /* this */
            invokeinterface io.vertx.ext.mail.impl.ConnectionLifeCycleListener.dataEnded:(Lio/vertx/ext/mail/impl/SMTPConnection;)V
        11: .line 265
            getstatic io.vertx.ext.mail.impl.SMTPConnection.log:Lio/vertx/core/logging/Logger;
            ldc "setting error handler to null"
            invokevirtual io.vertx.core.logging.Logger.debug:(Ljava/lang/Object;)V
        12: .line 266
            aload 0 /* this */
            aconst_null
            putfield io.vertx.ext.mail.impl.SMTPConnection.errorHandler:Lio/vertx/core/Handler;
        13: .line 269
      StackMap locals:
      StackMap stack:
            return
        end local 0 // io.vertx.ext.mail.impl.SMTPConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   14     0  this  Lio/vertx/ext/mail/impl/SMTPConnection;

  private void quitCloseConnection();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.vertx.ext.mail.impl.SMTPConnection this
         0: .line 276
            aload 0 /* this */
            getfield io.vertx.ext.mail.impl.SMTPConnection.socketShutDown:Z
            ifne 2
         1: .line 277
            aload 0 /* this */
            getfield io.vertx.ext.mail.impl.SMTPConnection.context:Lio/vertx/core/Context;
            aload 0 /* this */
            invokedynamic handle(Lio/vertx/ext/mail/impl/SMTPConnection;)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/ext/mail/impl/SMTPConnection.lambda$5(Ljava/lang/Void;)V (7)
                  (Ljava/lang/Void;)V
            invokeinterface io.vertx.core.Context.runOnContext:(Lio/vertx/core/Handler;)V
         2: .line 292
      StackMap locals:
      StackMap stack:
            return
        end local 0 // io.vertx.ext.mail.impl.SMTPConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/vertx/ext/mail/impl/SMTPConnection;

  void useConnection();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.vertx.ext.mail.impl.SMTPConnection this
         0: .line 298
            aload 0 /* this */
            iconst_0
            putfield io.vertx.ext.mail.impl.SMTPConnection.idle:Z
         1: .line 299
            return
        end local 0 // io.vertx.ext.mail.impl.SMTPConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/ext/mail/impl/SMTPConnection;

  void setIdle();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.vertx.ext.mail.impl.SMTPConnection this
         0: .line 305
            aload 0 /* this */
            iconst_1
            putfield io.vertx.ext.mail.impl.SMTPConnection.idle:Z
         1: .line 306
            return
        end local 0 // io.vertx.ext.mail.impl.SMTPConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/ext/mail/impl/SMTPConnection;

  public void setErrorHandler(io.vertx.core.Handler<java.lang.Throwable>);
    descriptor: (Lio/vertx/core/Handler;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.mail.impl.SMTPConnection this
        start local 1 // io.vertx.core.Handler newHandler
         0: .line 314
            aload 0 /* this */
            getfield io.vertx.ext.mail.impl.SMTPConnection.prevErrorHandler:Lio/vertx/core/Handler;
            ifnonnull 2
         1: .line 315
            aload 0 /* this */
            aload 0 /* this */
            getfield io.vertx.ext.mail.impl.SMTPConnection.errorHandler:Lio/vertx/core/Handler;
            putfield io.vertx.ext.mail.impl.SMTPConnection.prevErrorHandler:Lio/vertx/core/Handler;
         2: .line 318
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* newHandler */
            putfield io.vertx.ext.mail.impl.SMTPConnection.errorHandler:Lio/vertx/core/Handler;
         3: .line 319
            return
        end local 1 // io.vertx.core.Handler newHandler
        end local 0 // io.vertx.ext.mail.impl.SMTPConnection this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    4     0        this  Lio/vertx/ext/mail/impl/SMTPConnection;
            0    4     1  newHandler  Lio/vertx/core/Handler<Ljava/lang/Throwable;>;
    Signature: (Lio/vertx/core/Handler<Ljava/lang/Throwable;>;)V
    MethodParameters:
            Name  Flags
      newHandler  

  public void resetErrorHandler();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.vertx.ext.mail.impl.SMTPConnection this
         0: .line 325
            aload 0 /* this */
            aload 0 /* this */
            getfield io.vertx.ext.mail.impl.SMTPConnection.prevErrorHandler:Lio/vertx/core/Handler;
            putfield io.vertx.ext.mail.impl.SMTPConnection.errorHandler:Lio/vertx/core/Handler;
         1: .line 326
            return
        end local 0 // io.vertx.ext.mail.impl.SMTPConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/ext/mail/impl/SMTPConnection;

  public void setBroken();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.vertx.ext.mail.impl.SMTPConnection this
         0: .line 332
            aload 0 /* this */
            getfield io.vertx.ext.mail.impl.SMTPConnection.broken:Z
            ifne 8
         1: .line 333
            getstatic io.vertx.ext.mail.impl.SMTPConnection.log:Lio/vertx/core/logging/Logger;
            ldc "setting connection to broken"
            invokevirtual io.vertx.core.logging.Logger.debug:(Ljava/lang/Object;)V
         2: .line 334
            aload 0 /* this */
            iconst_1
            putfield io.vertx.ext.mail.impl.SMTPConnection.broken:Z
         3: .line 335
            aload 0 /* this */
            aconst_null
            putfield io.vertx.ext.mail.impl.SMTPConnection.commandReplyHandler:Lio/vertx/core/Handler;
         4: .line 336
            getstatic io.vertx.ext.mail.impl.SMTPConnection.log:Lio/vertx/core/logging/Logger;
            ldc "closing connection"
            invokevirtual io.vertx.core.logging.Logger.debug:(Ljava/lang/Object;)V
         5: .line 337
            aload 0 /* this */
            invokevirtual io.vertx.ext.mail.impl.SMTPConnection.shutdown:()V
         6: .line 338
            aload 0 /* this */
            getfield io.vertx.ext.mail.impl.SMTPConnection.listener:Lio/vertx/ext/mail/impl/ConnectionLifeCycleListener;
            aload 0 /* this */
            invokeinterface io.vertx.ext.mail.impl.ConnectionLifeCycleListener.dataEnded:(Lio/vertx/ext/mail/impl/SMTPConnection;)V
         7: .line 339
            goto 9
         8: .line 340
      StackMap locals:
      StackMap stack:
            getstatic io.vertx.ext.mail.impl.SMTPConnection.log:Lio/vertx/core/logging/Logger;
            ldc "connection is already set to broken"
            invokevirtual io.vertx.core.logging.Logger.debug:(Ljava/lang/Object;)V
         9: .line 342
      StackMap locals:
      StackMap stack:
            return
        end local 0 // io.vertx.ext.mail.impl.SMTPConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   10     0  this  Lio/vertx/ext/mail/impl/SMTPConnection;

  public void setDoShutdown();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.vertx.ext.mail.impl.SMTPConnection this
         0: .line 349
            getstatic io.vertx.ext.mail.impl.SMTPConnection.log:Lio/vertx/core/logging/Logger;
            ldc "will shut down connection after send operation finishes"
            invokevirtual io.vertx.core.logging.Logger.debug:(Ljava/lang/Object;)V
         1: .line 350
            aload 0 /* this */
            iconst_1
            putfield io.vertx.ext.mail.impl.SMTPConnection.doShutdown:Z
         2: .line 351
            return
        end local 0 // io.vertx.ext.mail.impl.SMTPConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/vertx/ext/mail/impl/SMTPConnection;

  public void close();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.ext.mail.impl.SMTPConnection this
         0: .line 357
            aload 0 /* this */
            invokevirtual io.vertx.ext.mail.impl.SMTPConnection.quitCloseConnection:()V
         1: .line 358
            return
        end local 0 // io.vertx.ext.mail.impl.SMTPConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/ext/mail/impl/SMTPConnection;

  boolean isClosed();
    descriptor: ()Z
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.ext.mail.impl.SMTPConnection this
         0: .line 364
            aload 0 /* this */
            getfield io.vertx.ext.mail.impl.SMTPConnection.socketClosed:Z
            ireturn
        end local 0 // io.vertx.ext.mail.impl.SMTPConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/mail/impl/SMTPConnection;

  io.vertx.core.Context getContext();
    descriptor: ()Lio/vertx/core/Context;
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.ext.mail.impl.SMTPConnection this
         0: .line 373
            aload 0 /* this */
            getfield io.vertx.ext.mail.impl.SMTPConnection.context:Lio/vertx/core/Context;
            areturn
        end local 0 // io.vertx.ext.mail.impl.SMTPConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/mail/impl/SMTPConnection;

  private void lambda$0(java.lang.String, io.vertx.core.Handler, java.lang.Void);
    descriptor: (Ljava/lang/String;Lio/vertx/core/Handler;Ljava/lang/Void;)V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // io.vertx.ext.mail.impl.SMTPConnection this
        start local 3 // java.lang.Void v
         0: .line 149
            aload 0 /* this */
            getfield io.vertx.ext.mail.impl.SMTPConnection.ns:Lio/vertx/core/net/NetSocket;
            aconst_null
            invokeinterface io.vertx.core.net.NetSocket.drainHandler:(Lio/vertx/core/Handler;)Lio/vertx/core/net/NetSocket;
            pop
         1: .line 150
            aload 0 /* this */
            getfield io.vertx.ext.mail.impl.SMTPConnection.ns:Lio/vertx/core/net/NetSocket;
            new java.lang.StringBuilder
            dup
            aload 1
            invokestatic java.lang.String.valueOf:(Ljava/lang/Object;)Ljava/lang/String;
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            ldc "\r\n"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokeinterface io.vertx.core.net.NetSocket.write:(Ljava/lang/String;)Lio/vertx/core/net/NetSocket;
            pop
         2: .line 151
            aload 2
            aconst_null
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
         3: .line 152
            return
        end local 3 // java.lang.Void v
        end local 0 // io.vertx.ext.mail.impl.SMTPConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lio/vertx/ext/mail/impl/SMTPConnection;
            0    4     3     v  Ljava/lang/Void;

  private void lambda$1(io.vertx.core.Handler, io.vertx.core.AsyncResult);
    descriptor: (Lio/vertx/core/Handler;Lio/vertx/core/AsyncResult;)V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // io.vertx.ext.mail.impl.SMTPConnection this
        start local 2 // io.vertx.core.AsyncResult asyncResult
         0: .line 177
            aload 2 /* asyncResult */
            invokeinterface io.vertx.core.AsyncResult.succeeded:()Z
            ifeq 10
         1: .line 178
            aload 0 /* this */
            invokestatic io.vertx.core.Vertx.currentContext:()Lio/vertx/core/Context;
            putfield io.vertx.ext.mail.impl.SMTPConnection.context:Lio/vertx/core/Context;
         2: .line 179
            aload 0 /* this */
            aload 2 /* asyncResult */
            invokeinterface io.vertx.core.AsyncResult.result:()Ljava/lang/Object;
            checkcast io.vertx.core.net.NetSocket
            putfield io.vertx.ext.mail.impl.SMTPConnection.ns:Lio/vertx/core/net/NetSocket;
         3: .line 180
            aload 0 /* this */
            iconst_0
            putfield io.vertx.ext.mail.impl.SMTPConnection.socketClosed:Z
         4: .line 181
            aload 0 /* this */
            getfield io.vertx.ext.mail.impl.SMTPConnection.ns:Lio/vertx/core/net/NetSocket;
            aload 0 /* this */
            invokedynamic handle(Lio/vertx/ext/mail/impl/SMTPConnection;)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/ext/mail/impl/SMTPConnection.lambda$2(Ljava/lang/Throwable;)V (7)
                  (Ljava/lang/Throwable;)V
            invokeinterface io.vertx.core.net.NetSocket.exceptionHandler:(Lio/vertx/core/Handler;)Lio/vertx/core/net/NetSocket;
            pop
         5: .line 192
            aload 0 /* this */
            getfield io.vertx.ext.mail.impl.SMTPConnection.ns:Lio/vertx/core/net/NetSocket;
            aload 0 /* this */
            invokedynamic handle(Lio/vertx/ext/mail/impl/SMTPConnection;)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/ext/mail/impl/SMTPConnection.lambda$3(Ljava/lang/Void;)V (7)
                  (Ljava/lang/Void;)V
            invokeinterface io.vertx.core.net.NetSocket.closeHandler:(Lio/vertx/core/Handler;)Lio/vertx/core/net/NetSocket;
            pop
         6: .line 216
            aload 0 /* this */
            aload 1
            putfield io.vertx.ext.mail.impl.SMTPConnection.commandReplyHandler:Lio/vertx/core/Handler;
         7: .line 217
            new io.vertx.ext.mail.impl.MultilineParser
            dup
            aload 0 /* this */
            invokedynamic handle(Lio/vertx/ext/mail/impl/SMTPConnection;)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/ext/mail/impl/SMTPConnection.lambda$4(Lio/vertx/core/buffer/Buffer;)V (7)
                  (Lio/vertx/core/buffer/Buffer;)V
            invokespecial io.vertx.ext.mail.impl.MultilineParser.<init>:(Lio/vertx/core/Handler;)V
            astore 3 /* mlp */
        start local 3 // io.vertx.core.Handler mlp
         8: .line 227
            aload 0 /* this */
            getfield io.vertx.ext.mail.impl.SMTPConnection.ns:Lio/vertx/core/net/NetSocket;
            aload 3 /* mlp */
            invokeinterface io.vertx.core.net.NetSocket.handler:(Lio/vertx/core/Handler;)Lio/vertx/core/net/NetSocket;
            pop
        end local 3 // io.vertx.core.Handler mlp
         9: .line 228
            goto 13
        10: .line 229
      StackMap locals:
      StackMap stack:
            getstatic io.vertx.ext.mail.impl.SMTPConnection.log:Lio/vertx/core/logging/Logger;
            ldc "exception on connect"
            aload 2 /* asyncResult */
            invokeinterface io.vertx.core.AsyncResult.cause:()Ljava/lang/Throwable;
            invokevirtual io.vertx.core.logging.Logger.error:(Ljava/lang/Object;Ljava/lang/Throwable;)V
        11: .line 231
            aload 0 /* this */
            getfield io.vertx.ext.mail.impl.SMTPConnection.listener:Lio/vertx/ext/mail/impl/ConnectionLifeCycleListener;
            aconst_null
            invokeinterface io.vertx.ext.mail.impl.ConnectionLifeCycleListener.connectionClosed:(Lio/vertx/ext/mail/impl/SMTPConnection;)V
        12: .line 232
            aload 0 /* this */
            aload 2 /* asyncResult */
            invokeinterface io.vertx.core.AsyncResult.cause:()Ljava/lang/Throwable;
            invokevirtual io.vertx.ext.mail.impl.SMTPConnection.handleError:(Ljava/lang/Throwable;)V
        13: .line 234
      StackMap locals:
      StackMap stack:
            return
        end local 2 // io.vertx.core.AsyncResult asyncResult
        end local 0 // io.vertx.ext.mail.impl.SMTPConnection this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   14     0         this  Lio/vertx/ext/mail/impl/SMTPConnection;
            0   14     2  asyncResult  Lio/vertx/core/AsyncResult<Lio/vertx/core/net/NetSocket;>;
            8    9     3          mlp  Lio/vertx/core/Handler<Lio/vertx/core/buffer/Buffer;>;

  private void lambda$5(java.lang.Void);
    descriptor: (Ljava/lang/Void;)V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // io.vertx.ext.mail.impl.SMTPConnection this
        start local 1 // java.lang.Void v1
         0: .line 278
            getstatic io.vertx.ext.mail.impl.SMTPConnection.log:Lio/vertx/core/logging/Logger;
            ldc "shutting down connection"
            invokevirtual io.vertx.core.logging.Logger.debug:(Ljava/lang/Object;)V
         1: .line 279
            aload 0 /* this */
            getfield io.vertx.ext.mail.impl.SMTPConnection.socketClosed:Z
            ifeq 5
         2: .line 280
            getstatic io.vertx.ext.mail.impl.SMTPConnection.log:Lio/vertx/core/logging/Logger;
            ldc "connection is already closed, only doing shutdown()"
            invokevirtual io.vertx.core.logging.Logger.debug:(Ljava/lang/Object;)V
         3: .line 281
            aload 0 /* this */
            invokevirtual io.vertx.ext.mail.impl.SMTPConnection.shutdown:()V
         4: .line 282
            goto 8
         5: .line 284
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual io.vertx.ext.mail.impl.SMTPConnection.useConnection:()V
         6: .line 285
            new io.vertx.ext.mail.impl.SMTPQuit
            dup
            aload 0 /* this */
            aload 0 /* this */
            invokedynamic handle(Lio/vertx/ext/mail/impl/SMTPConnection;)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/ext/mail/impl/SMTPConnection.lambda$6(Ljava/lang/Void;)V (7)
                  (Ljava/lang/Void;)V
            invokespecial io.vertx.ext.mail.impl.SMTPQuit.<init>:(Lio/vertx/ext/mail/impl/SMTPConnection;Lio/vertx/core/Handler;)V
         7: .line 288
            invokevirtual io.vertx.ext.mail.impl.SMTPQuit.start:()V
         8: .line 290
      StackMap locals:
      StackMap stack:
            return
        end local 1 // java.lang.Void v1
        end local 0 // io.vertx.ext.mail.impl.SMTPConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0  this  Lio/vertx/ext/mail/impl/SMTPConnection;
            0    9     1    v1  Ljava/lang/Void;

  private void lambda$2(java.lang.Throwable);
    descriptor: (Ljava/lang/Throwable;)V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.vertx.ext.mail.impl.SMTPConnection this
        start local 1 // java.lang.Throwable e
         0: .line 183
            getstatic io.vertx.ext.mail.impl.SMTPConnection.log:Lio/vertx/core/logging/Logger;
            ldc "exceptionHandler called"
            invokevirtual io.vertx.core.logging.Logger.debug:(Ljava/lang/Object;)V
         1: .line 184
            aload 0 /* this */
            getfield io.vertx.ext.mail.impl.SMTPConnection.socketClosed:Z
            ifne 6
            aload 0 /* this */
            getfield io.vertx.ext.mail.impl.SMTPConnection.socketShutDown:Z
            ifne 6
            aload 0 /* this */
            getfield io.vertx.ext.mail.impl.SMTPConnection.idle:Z
            ifne 6
            aload 0 /* this */
            getfield io.vertx.ext.mail.impl.SMTPConnection.broken:Z
            ifne 6
         2: .line 185
            aload 0 /* this */
            invokevirtual io.vertx.ext.mail.impl.SMTPConnection.setBroken:()V
         3: .line 186
            getstatic io.vertx.ext.mail.impl.SMTPConnection.log:Lio/vertx/core/logging/Logger;
            ldc "got an exception on the netsocket"
            aload 1 /* e */
            invokevirtual io.vertx.core.logging.Logger.debug:(Ljava/lang/Object;Ljava/lang/Throwable;)V
         4: .line 187
            aload 0 /* this */
            aload 1 /* e */
            invokevirtual io.vertx.ext.mail.impl.SMTPConnection.handleError:(Ljava/lang/Throwable;)V
         5: .line 188
            goto 7
         6: .line 189
      StackMap locals:
      StackMap stack:
            getstatic io.vertx.ext.mail.impl.SMTPConnection.log:Lio/vertx/core/logging/Logger;
            ldc "not returning follow-up exception"
            aload 1 /* e */
            invokevirtual io.vertx.core.logging.Logger.debug:(Ljava/lang/Object;Ljava/lang/Throwable;)V
         7: .line 191
      StackMap locals:
      StackMap stack:
            return
        end local 1 // java.lang.Throwable e
        end local 0 // io.vertx.ext.mail.impl.SMTPConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Lio/vertx/ext/mail/impl/SMTPConnection;
            0    8     1     e  Ljava/lang/Throwable;

  private void lambda$3(java.lang.Void);
    descriptor: (Ljava/lang/Void;)V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.mail.impl.SMTPConnection this
        start local 1 // java.lang.Void v
         0: .line 193
            getstatic io.vertx.ext.mail.impl.SMTPConnection.log:Lio/vertx/core/logging/Logger;
            ldc "socket has been closed"
            invokevirtual io.vertx.core.logging.Logger.debug:(Ljava/lang/Object;)V
         1: .line 194
            aload 0 /* this */
            getfield io.vertx.ext.mail.impl.SMTPConnection.listener:Lio/vertx/ext/mail/impl/ConnectionLifeCycleListener;
            aload 0 /* this */
            invokeinterface io.vertx.ext.mail.impl.ConnectionLifeCycleListener.connectionClosed:(Lio/vertx/ext/mail/impl/SMTPConnection;)V
         2: .line 195
            aload 0 /* this */
            iconst_1
            putfield io.vertx.ext.mail.impl.SMTPConnection.socketClosed:Z
         3: .line 197
            aload 0 /* this */
            getfield io.vertx.ext.mail.impl.SMTPConnection.socketShutDown:Z
            ifne 8
            aload 0 /* this */
            getfield io.vertx.ext.mail.impl.SMTPConnection.idle:Z
            ifne 8
            aload 0 /* this */
            getfield io.vertx.ext.mail.impl.SMTPConnection.broken:Z
            ifne 8
         4: .line 198
            aload 0 /* this */
            invokevirtual io.vertx.ext.mail.impl.SMTPConnection.setBroken:()V
         5: .line 199
            getstatic io.vertx.ext.mail.impl.SMTPConnection.log:Lio/vertx/core/logging/Logger;
            ldc "throwing: connection has been closed by the server"
            invokevirtual io.vertx.core.logging.Logger.debug:(Ljava/lang/Object;)V
         6: .line 200
            aload 0 /* this */
            ldc "connection has been closed by the server"
            invokevirtual io.vertx.ext.mail.impl.SMTPConnection.handleError:(Ljava/lang/String;)V
         7: .line 201
            goto 17
         8: .line 202
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.ext.mail.impl.SMTPConnection.socketShutDown:Z
            ifne 9
            aload 0 /* this */
            getfield io.vertx.ext.mail.impl.SMTPConnection.broken:Z
            ifeq 11
         9: .line 203
      StackMap locals:
      StackMap stack:
            getstatic io.vertx.ext.mail.impl.SMTPConnection.log:Lio/vertx/core/logging/Logger;
            ldc "close has been expected"
            invokevirtual io.vertx.core.logging.Logger.debug:(Ljava/lang/Object;)V
        10: .line 204
            goto 12
        11: .line 205
      StackMap locals:
      StackMap stack:
            getstatic io.vertx.ext.mail.impl.SMTPConnection.log:Lio/vertx/core/logging/Logger;
            ldc "closed while connection has been idle (timeout on server?)"
            invokevirtual io.vertx.core.logging.Logger.debug:(Ljava/lang/Object;)V
        12: .line 207
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.ext.mail.impl.SMTPConnection.broken:Z
            ifne 14
        13: .line 208
            aload 0 /* this */
            invokevirtual io.vertx.ext.mail.impl.SMTPConnection.setBroken:()V
        14: .line 210
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.ext.mail.impl.SMTPConnection.socketShutDown:Z
            ifne 17
        15: .line 211
            aload 0 /* this */
            invokevirtual io.vertx.ext.mail.impl.SMTPConnection.shutdown:()V
        16: .line 212
            aload 0 /* this */
            getfield io.vertx.ext.mail.impl.SMTPConnection.listener:Lio/vertx/ext/mail/impl/ConnectionLifeCycleListener;
            aload 0 /* this */
            invokeinterface io.vertx.ext.mail.impl.ConnectionLifeCycleListener.dataEnded:(Lio/vertx/ext/mail/impl/SMTPConnection;)V
        17: .line 215
      StackMap locals:
      StackMap stack:
            return
        end local 1 // java.lang.Void v
        end local 0 // io.vertx.ext.mail.impl.SMTPConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   18     0  this  Lio/vertx/ext/mail/impl/SMTPConnection;
            0   18     1     v  Ljava/lang/Void;

  private void lambda$4(io.vertx.core.buffer.Buffer);
    descriptor: (Lio/vertx/core/buffer/Buffer;)V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // io.vertx.ext.mail.impl.SMTPConnection this
        start local 1 // io.vertx.core.buffer.Buffer buffer
         0: .line 218
            aload 0 /* this */
            getfield io.vertx.ext.mail.impl.SMTPConnection.commandReplyHandler:Lio/vertx/core/Handler;
            ifnonnull 3
         1: .line 219
            getstatic io.vertx.ext.mail.impl.SMTPConnection.log:Lio/vertx/core/logging/Logger;
            new java.lang.StringBuilder
            dup
            ldc "dropping reply arriving after we stopped processing \""
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 1 /* buffer */
            invokeinterface io.vertx.core.buffer.Buffer.toString:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc "\""
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokevirtual io.vertx.core.logging.Logger.debug:(Ljava/lang/Object;)V
         2: .line 220
            goto 6
         3: .line 222
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.ext.mail.impl.SMTPConnection.commandReplyHandler:Lio/vertx/core/Handler;
            astore 2 /* currentHandler */
        start local 2 // io.vertx.core.Handler currentHandler
         4: .line 223
            aload 0 /* this */
            aconst_null
            putfield io.vertx.ext.mail.impl.SMTPConnection.commandReplyHandler:Lio/vertx/core/Handler;
         5: .line 224
            aload 2 /* currentHandler */
            aload 1 /* buffer */
            invokeinterface io.vertx.core.buffer.Buffer.toString:()Ljava/lang/String;
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
        end local 2 // io.vertx.core.Handler currentHandler
         6: .line 226
      StackMap locals:
      StackMap stack:
            return
        end local 1 // io.vertx.core.buffer.Buffer buffer
        end local 0 // io.vertx.ext.mail.impl.SMTPConnection this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    7     0            this  Lio/vertx/ext/mail/impl/SMTPConnection;
            0    7     1          buffer  Lio/vertx/core/buffer/Buffer;
            4    6     2  currentHandler  Lio/vertx/core/Handler<Ljava/lang/String;>;

  private void lambda$6(java.lang.Void);
    descriptor: (Ljava/lang/Void;)V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.mail.impl.SMTPConnection this
        start local 1 // java.lang.Void v
         0: .line 286
            aload 0 /* this */
            invokevirtual io.vertx.ext.mail.impl.SMTPConnection.shutdown:()V
         1: .line 287
            getstatic io.vertx.ext.mail.impl.SMTPConnection.log:Lio/vertx/core/logging/Logger;
            ldc "connection is shut down"
            invokevirtual io.vertx.core.logging.Logger.debug:(Ljava/lang/Object;)V
         2: .line 288
            return
        end local 1 // java.lang.Void v
        end local 0 // io.vertx.ext.mail.impl.SMTPConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/vertx/ext/mail/impl/SMTPConnection;
            0    3     1     v  Ljava/lang/Void;
}
SourceFile: "SMTPConnection.java"
InnerClasses:
  public final Lookup = java.lang.invoke.MethodHandles$Lookup of java.lang.invoke.MethodHandles