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

  private static final java.lang.String POOL_LOCAL_MAP_NAME;
    descriptor: Ljava/lang/String;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: "__vertx.MailClient.pools"

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

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

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

  private final io.vertx.ext.mail.impl.MailClientImpl$MailHolder holder;
    descriptor: Lio/vertx/ext/mail/impl/MailClientImpl$MailHolder;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private java.lang.String hostname;
    descriptor: Ljava/lang/String;
    flags: (0x0002) ACC_PRIVATE

  private volatile boolean closed;
    descriptor: Z
    flags: (0x0042) ACC_PRIVATE, ACC_VOLATILE

  private final java.util.List<io.vertx.ext.mail.impl.dkim.DKIMSigner> dkimSigners;
    descriptor: Ljava/util/List;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/List<Lio/vertx/ext/mail/impl/dkim/DKIMSigner;>;

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

  public void <init>(io.vertx.core.Vertx, io.vertx.ext.mail.MailConfig, java.lang.String);
    descriptor: (Lio/vertx/core/Vertx;Lio/vertx/ext/mail/MailConfig;Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // io.vertx.ext.mail.impl.MailClientImpl this
        start local 1 // io.vertx.core.Vertx vertx
        start local 2 // io.vertx.ext.mail.MailConfig config
        start local 3 // java.lang.String poolName
         0: .line 62
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 54
            aload 0 /* this */
            aconst_null
            putfield io.vertx.ext.mail.impl.MailClientImpl.hostname:Ljava/lang/String;
         2: .line 56
            aload 0 /* this */
            iconst_0
            putfield io.vertx.ext.mail.impl.MailClientImpl.closed:Z
         3: .line 63
            aload 0 /* this */
            aload 1 /* vertx */
            putfield io.vertx.ext.mail.impl.MailClientImpl.vertx:Lio/vertx/core/Vertx;
         4: .line 64
            aload 0 /* this */
            aload 2 /* config */
            putfield io.vertx.ext.mail.impl.MailClientImpl.config:Lio/vertx/ext/mail/MailConfig;
         5: .line 65
            aload 0 /* this */
            aload 0 /* this */
            aload 3 /* poolName */
            aload 2 /* config */
            invokevirtual io.vertx.ext.mail.impl.MailClientImpl.lookupHolder:(Ljava/lang/String;Lio/vertx/ext/mail/MailConfig;)Lio/vertx/ext/mail/impl/MailClientImpl$MailHolder;
            putfield io.vertx.ext.mail.impl.MailClientImpl.holder:Lio/vertx/ext/mail/impl/MailClientImpl$MailHolder;
         6: .line 66
            aload 0 /* this */
            aload 0 /* this */
            getfield io.vertx.ext.mail.impl.MailClientImpl.holder:Lio/vertx/ext/mail/impl/MailClientImpl$MailHolder;
            invokevirtual io.vertx.ext.mail.impl.MailClientImpl$MailHolder.pool:()Lio/vertx/ext/mail/impl/SMTPConnectionPool;
            putfield io.vertx.ext.mail.impl.MailClientImpl.connectionPool:Lio/vertx/ext/mail/impl/SMTPConnectionPool;
         7: .line 67
            aload 2 /* config */
            ifnull 10
            aload 2 /* config */
            invokevirtual io.vertx.ext.mail.MailConfig.isEnableDKIM:()Z
            ifeq 10
            aload 2 /* config */
            invokevirtual io.vertx.ext.mail.MailConfig.getDKIMSignOptions:()Ljava/util/List;
            ifnull 10
         8: .line 68
            aload 0 /* this */
            aload 2 /* config */
            invokevirtual io.vertx.ext.mail.MailConfig.getDKIMSignOptions:()Ljava/util/List;
            invokeinterface java.util.List.stream:()Ljava/util/stream/Stream;
            aload 1 /* vertx */
            invokedynamic apply(Lio/vertx/core/Vertx;)Ljava/util/function/Function;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;)Ljava/lang/Object;
                  io/vertx/ext/mail/impl/MailClientImpl.lambda$0(Lio/vertx/core/Vertx;Lio/vertx/ext/mail/DKIMSignOptions;)Lio/vertx/ext/mail/impl/dkim/DKIMSigner; (6)
                  (Lio/vertx/ext/mail/DKIMSignOptions;)Lio/vertx/ext/mail/impl/dkim/DKIMSigner;
            invokeinterface java.util.stream.Stream.map:(Ljava/util/function/Function;)Ljava/util/stream/Stream;
            invokestatic java.util.stream.Collectors.toList:()Ljava/util/stream/Collector;
            invokeinterface java.util.stream.Stream.collect:(Ljava/util/stream/Collector;)Ljava/lang/Object;
            checkcast java.util.List
            putfield io.vertx.ext.mail.impl.MailClientImpl.dkimSigners:Ljava/util/List;
         9: .line 69
            goto 11
        10: .line 70
      StackMap locals: io.vertx.ext.mail.impl.MailClientImpl io.vertx.core.Vertx io.vertx.ext.mail.MailConfig java.lang.String
      StackMap stack:
            aload 0 /* this */
            invokestatic java.util.Collections.emptyList:()Ljava/util/List;
            putfield io.vertx.ext.mail.impl.MailClientImpl.dkimSigners:Ljava/util/List;
        11: .line 72
      StackMap locals:
      StackMap stack:
            return
        end local 3 // java.lang.String poolName
        end local 2 // io.vertx.ext.mail.MailConfig config
        end local 1 // io.vertx.core.Vertx vertx
        end local 0 // io.vertx.ext.mail.impl.MailClientImpl this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   12     0      this  Lio/vertx/ext/mail/impl/MailClientImpl;
            0   12     1     vertx  Lio/vertx/core/Vertx;
            0   12     2    config  Lio/vertx/ext/mail/MailConfig;
            0   12     3  poolName  Ljava/lang/String;
    MethodParameters:
          Name  Flags
      vertx     
      config    
      poolName  

  public void close();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // io.vertx.ext.mail.impl.MailClientImpl this
         0: .line 76
            aload 0 /* this */
            getfield io.vertx.ext.mail.impl.MailClientImpl.closed:Z
            ifeq 2
         1: .line 77
            new java.lang.IllegalStateException
            dup
            ldc "Already closed"
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 79
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.ext.mail.impl.MailClientImpl.holder:Lio/vertx/ext/mail/impl/MailClientImpl$MailHolder;
            invokevirtual io.vertx.ext.mail.impl.MailClientImpl$MailHolder.close:()V
         3: .line 80
            aload 0 /* this */
            iconst_1
            putfield io.vertx.ext.mail.impl.MailClientImpl.closed:Z
         4: .line 81
            return
        end local 0 // io.vertx.ext.mail.impl.MailClientImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lio/vertx/ext/mail/impl/MailClientImpl;

  public io.vertx.ext.mail.MailClient sendMail(io.vertx.ext.mail.MailMessage, io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.ext.mail.MailResult>>);
    descriptor: (Lio/vertx/ext/mail/MailMessage;Lio/vertx/core/Handler;)Lio/vertx/ext/mail/MailClient;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=4, args_size=3
        start local 0 // io.vertx.ext.mail.impl.MailClientImpl this
        start local 1 // io.vertx.ext.mail.MailMessage message
        start local 2 // io.vertx.core.Handler resultHandler
         0: .line 85
            aload 0 /* this */
            getfield io.vertx.ext.mail.impl.MailClientImpl.vertx:Lio/vertx/core/Vertx;
            invokeinterface io.vertx.core.Vertx.getOrCreateContext:()Lio/vertx/core/Context;
            astore 3 /* context */
        start local 3 // io.vertx.core.Context context
         1: .line 86
            aload 0 /* this */
            getfield io.vertx.ext.mail.impl.MailClientImpl.closed:Z
            ifne 11
         2: .line 87
            aload 0 /* this */
            aload 1 /* message */
            aload 2 /* resultHandler */
            aload 3 /* context */
            invokevirtual io.vertx.ext.mail.impl.MailClientImpl.validateHeaders:(Lio/vertx/ext/mail/MailMessage;Lio/vertx/core/Handler;Lio/vertx/core/Context;)Z
            ifeq 12
         3: .line 88
            aload 0 /* this */
            getfield io.vertx.ext.mail.impl.MailClientImpl.hostname:Ljava/lang/String;
            ifnonnull 9
         4: .line 89
            aload 0 /* this */
            getfield io.vertx.ext.mail.impl.MailClientImpl.vertx:Lio/vertx/core/Vertx;
         5: .line 90
            aload 0 /* this */
            invokedynamic handle(Lio/vertx/ext/mail/impl/MailClientImpl;)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/MailClientImpl.lambda$1(Lio/vertx/core/Promise;)V (7)
                  (Lio/vertx/core/Promise;)V
         6: .line 99
            aload 0 /* this */
            aload 1 /* message */
            aload 2 /* resultHandler */
            aload 3 /* context */
            invokedynamic handle(Lio/vertx/ext/mail/impl/MailClientImpl;Lio/vertx/ext/mail/MailMessage;Lio/vertx/core/Handler;Lio/vertx/core/Context;)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/MailClientImpl.lambda$2(Lio/vertx/ext/mail/MailMessage;Lio/vertx/core/Handler;Lio/vertx/core/Context;Lio/vertx/core/AsyncResult;)V (7)
                  (Lio/vertx/core/AsyncResult;)V
         7: .line 89
            invokeinterface io.vertx.core.Vertx.executeBlocking:(Lio/vertx/core/Handler;Lio/vertx/core/Handler;)V
         8: .line 107
            goto 12
         9: .line 108
      StackMap locals: io.vertx.core.Context
      StackMap stack:
            aload 0 /* this */
            aload 1 /* message */
            aload 2 /* resultHandler */
            aload 3 /* context */
            invokevirtual io.vertx.ext.mail.impl.MailClientImpl.getConnection:(Lio/vertx/ext/mail/MailMessage;Lio/vertx/core/Handler;Lio/vertx/core/Context;)V
        10: .line 111
            goto 12
        11: .line 112
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            ldc "mail client has been closed"
            aload 2 /* resultHandler */
            aload 3 /* context */
            invokevirtual io.vertx.ext.mail.impl.MailClientImpl.handleError:(Ljava/lang/String;Lio/vertx/core/Handler;Lio/vertx/core/Context;)V
        12: .line 114
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            areturn
        end local 3 // io.vertx.core.Context context
        end local 2 // io.vertx.core.Handler resultHandler
        end local 1 // io.vertx.ext.mail.MailMessage message
        end local 0 // io.vertx.ext.mail.impl.MailClientImpl this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   13     0           this  Lio/vertx/ext/mail/impl/MailClientImpl;
            0   13     1        message  Lio/vertx/ext/mail/MailMessage;
            0   13     2  resultHandler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/ext/mail/MailResult;>;>;
            1   13     3        context  Lio/vertx/core/Context;
    Signature: (Lio/vertx/ext/mail/MailMessage;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/ext/mail/MailResult;>;>;)Lio/vertx/ext/mail/MailClient;
    MethodParameters:
               Name  Flags
      message        
      resultHandler  

  private void getConnection(io.vertx.ext.mail.MailMessage, io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.ext.mail.MailResult>>, io.vertx.core.Context);
    descriptor: (Lio/vertx/ext/mail/MailMessage;Lio/vertx/core/Handler;Lio/vertx/core/Context;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=6, locals=4, args_size=4
        start local 0 // io.vertx.ext.mail.impl.MailClientImpl this
        start local 1 // io.vertx.ext.mail.MailMessage message
        start local 2 // io.vertx.core.Handler resultHandler
        start local 3 // io.vertx.core.Context context
         0: .line 118
            aload 0 /* this */
            getfield io.vertx.ext.mail.impl.MailClientImpl.connectionPool:Lio/vertx/ext/mail/impl/SMTPConnectionPool;
            aload 0 /* this */
            getfield io.vertx.ext.mail.impl.MailClientImpl.hostname:Ljava/lang/String;
            aload 0 /* this */
            aload 2 /* resultHandler */
            aload 3 /* context */
            aload 1 /* message */
            invokedynamic handle(Lio/vertx/ext/mail/impl/MailClientImpl;Lio/vertx/core/Handler;Lio/vertx/core/Context;Lio/vertx/ext/mail/MailMessage;)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/MailClientImpl.lambda$3(Lio/vertx/core/Handler;Lio/vertx/core/Context;Lio/vertx/ext/mail/MailMessage;Lio/vertx/core/AsyncResult;)V (7)
                  (Lio/vertx/core/AsyncResult;)V
            invokevirtual io.vertx.ext.mail.impl.SMTPConnectionPool.getConnection:(Ljava/lang/String;Lio/vertx/core/Handler;)V
         1: .line 127
            return
        end local 3 // io.vertx.core.Context context
        end local 2 // io.vertx.core.Handler resultHandler
        end local 1 // io.vertx.ext.mail.MailMessage message
        end local 0 // io.vertx.ext.mail.impl.MailClientImpl this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    2     0           this  Lio/vertx/ext/mail/impl/MailClientImpl;
            0    2     1        message  Lio/vertx/ext/mail/MailMessage;
            0    2     2  resultHandler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/ext/mail/MailResult;>;>;
            0    2     3        context  Lio/vertx/core/Context;
    Signature: (Lio/vertx/ext/mail/MailMessage;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/ext/mail/MailResult;>;>;Lio/vertx/core/Context;)V
    MethodParameters:
               Name  Flags
      message        
      resultHandler  
      context        

  private io.vertx.core.Future<java.lang.Void> dkimFuture(io.vertx.core.Context, io.vertx.ext.mail.mailencoder.EncodedPart);
    descriptor: (Lio/vertx/core/Context;Lio/vertx/ext/mail/mailencoder/EncodedPart;)Lio/vertx/core/Future;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // io.vertx.ext.mail.impl.MailClientImpl this
        start local 1 // io.vertx.core.Context context
        start local 2 // io.vertx.ext.mail.mailencoder.EncodedPart encodedPart
         0: .line 130
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            astore 3 /* dkimFutures */
        start local 3 // java.util.List dkimFutures
         1: .line 132
            aload 0 /* this */
            getfield io.vertx.ext.mail.impl.MailClientImpl.dkimSigners:Ljava/util/List;
            aload 3 /* dkimFutures */
            aload 1 /* context */
            aload 2 /* encodedPart */
            invokedynamic accept(Ljava/util/List;Lio/vertx/core/Context;Lio/vertx/ext/mail/mailencoder/EncodedPart;)Ljava/util/function/Consumer;
              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/MailClientImpl.lambda$5(Ljava/util/List;Lio/vertx/core/Context;Lio/vertx/ext/mail/mailencoder/EncodedPart;Lio/vertx/ext/mail/impl/dkim/DKIMSigner;)V (6)
                  (Lio/vertx/ext/mail/impl/dkim/DKIMSigner;)V
            invokeinterface java.util.List.forEach:(Ljava/util/function/Consumer;)V
         2: .line 133
            aload 3 /* dkimFutures */
            invokestatic io.vertx.core.CompositeFuture.all:(Ljava/util/List;)Lio/vertx/core/CompositeFuture;
            aload 3 /* dkimFutures */
            aload 2 /* encodedPart */
            invokedynamic apply(Ljava/util/List;Lio/vertx/ext/mail/mailencoder/EncodedPart;)Ljava/util/function/Function;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;)Ljava/lang/Object;
                  io/vertx/ext/mail/impl/MailClientImpl.lambda$6(Ljava/util/List;Lio/vertx/ext/mail/mailencoder/EncodedPart;Lio/vertx/core/CompositeFuture;)Ljava/lang/Void; (6)
                  (Lio/vertx/core/CompositeFuture;)Ljava/lang/Void;
            invokeinterface io.vertx.core.CompositeFuture.map:(Ljava/util/function/Function;)Lio/vertx/core/Future;
            areturn
        end local 3 // java.util.List dkimFutures
        end local 2 // io.vertx.ext.mail.mailencoder.EncodedPart encodedPart
        end local 1 // io.vertx.core.Context context
        end local 0 // io.vertx.ext.mail.impl.MailClientImpl this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    3     0         this  Lio/vertx/ext/mail/impl/MailClientImpl;
            0    3     1      context  Lio/vertx/core/Context;
            0    3     2  encodedPart  Lio/vertx/ext/mail/mailencoder/EncodedPart;
            1    3     3  dkimFutures  Ljava/util/List<Lio/vertx/core/Future;>;
    Signature: (Lio/vertx/core/Context;Lio/vertx/ext/mail/mailencoder/EncodedPart;)Lio/vertx/core/Future<Ljava/lang/Void;>;
    MethodParameters:
             Name  Flags
      context      
      encodedPart  

  private void sendMessage(io.vertx.ext.mail.MailMessage, io.vertx.ext.mail.impl.SMTPConnection, io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.ext.mail.MailResult>>, io.vertx.core.Context);
    descriptor: (Lio/vertx/ext/mail/MailMessage;Lio/vertx/ext/mail/impl/SMTPConnection;Lio/vertx/core/Handler;Lio/vertx/core/Context;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=7, locals=10, args_size=5
        start local 0 // io.vertx.ext.mail.impl.MailClientImpl this
        start local 1 // io.vertx.ext.mail.MailMessage email
        start local 2 // io.vertx.ext.mail.impl.SMTPConnection conn
        start local 3 // io.vertx.core.Handler resultHandler
        start local 4 // io.vertx.core.Context context
         0: .line 142
            aload 0 /* this */
            aload 2 /* conn */
            aload 3 /* resultHandler */
            aload 4 /* context */
            invokedynamic handle(Lio/vertx/ext/mail/impl/MailClientImpl;Lio/vertx/ext/mail/impl/SMTPConnection;Lio/vertx/core/Handler;Lio/vertx/core/Context;)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/MailClientImpl.lambda$8(Lio/vertx/ext/mail/impl/SMTPConnection;Lio/vertx/core/Handler;Lio/vertx/core/Context;Lio/vertx/core/AsyncResult;)V (7)
                  (Lio/vertx/core/AsyncResult;)V
            astore 5 /* sentResultHandler */
        start local 5 // io.vertx.core.Handler sentResultHandler
         1: .line 151
            new io.vertx.ext.mail.mailencoder.MailEncoder
            dup
            aload 1 /* email */
            aload 0 /* this */
            getfield io.vertx.ext.mail.impl.MailClientImpl.hostname:Ljava/lang/String;
            invokespecial io.vertx.ext.mail.mailencoder.MailEncoder.<init>:(Lio/vertx/ext/mail/MailMessage;Ljava/lang/String;)V
            astore 6 /* encoder */
        start local 6 // io.vertx.ext.mail.mailencoder.MailEncoder encoder
         2: .line 152
            aload 6 /* encoder */
            invokevirtual io.vertx.ext.mail.mailencoder.MailEncoder.encodeMail:()Lio/vertx/ext/mail/mailencoder/EncodedPart;
            astore 7 /* encodedPart */
        start local 7 // io.vertx.ext.mail.mailencoder.EncodedPart encodedPart
         3: .line 153
            aload 6 /* encoder */
            invokevirtual io.vertx.ext.mail.mailencoder.MailEncoder.getMessageID:()Ljava/lang/String;
            astore 8 /* messageId */
        start local 8 // java.lang.String messageId
         4: .line 155
            new io.vertx.ext.mail.impl.SMTPSendMail
            dup
            aload 2 /* conn */
            aload 1 /* email */
            aload 0 /* this */
            getfield io.vertx.ext.mail.impl.MailClientImpl.config:Lio/vertx/ext/mail/MailConfig;
            aload 7 /* encodedPart */
            aload 8 /* messageId */
            invokespecial io.vertx.ext.mail.impl.SMTPSendMail.<init>:(Lio/vertx/ext/mail/impl/SMTPConnection;Lio/vertx/ext/mail/MailMessage;Lio/vertx/ext/mail/MailConfig;Lio/vertx/ext/mail/mailencoder/EncodedPart;Ljava/lang/String;)V
            astore 9 /* sendMail */
        start local 9 // io.vertx.ext.mail.impl.SMTPSendMail sendMail
         5: .line 156
            aload 0 /* this */
            getfield io.vertx.ext.mail.impl.MailClientImpl.dkimSigners:Ljava/util/List;
            invokeinterface java.util.List.isEmpty:()Z
            ifeq 8
         6: .line 157
            aload 9 /* sendMail */
            aload 5 /* sentResultHandler */
            invokevirtual io.vertx.ext.mail.impl.SMTPSendMail.startMailTransaction:(Lio/vertx/core/Handler;)V
         7: .line 158
            goto 12
         8: .line 160
      StackMap locals: io.vertx.ext.mail.impl.MailClientImpl io.vertx.ext.mail.MailMessage io.vertx.ext.mail.impl.SMTPConnection io.vertx.core.Handler io.vertx.core.Context io.vertx.core.Handler io.vertx.ext.mail.mailencoder.MailEncoder io.vertx.ext.mail.mailencoder.EncodedPart java.lang.String io.vertx.ext.mail.impl.SMTPSendMail
      StackMap stack:
            aload 0 /* this */
            aload 4 /* context */
            aload 7 /* encodedPart */
            invokevirtual io.vertx.ext.mail.impl.MailClientImpl.dkimFuture:(Lio/vertx/core/Context;Lio/vertx/ext/mail/mailencoder/EncodedPart;)Lio/vertx/core/Future;
            aload 4 /* context */
            aload 9 /* sendMail */
            aload 5 /* sentResultHandler */
            invokedynamic handle(Lio/vertx/core/Context;Lio/vertx/ext/mail/impl/SMTPSendMail;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/MailClientImpl.lambda$9(Lio/vertx/core/Context;Lio/vertx/ext/mail/impl/SMTPSendMail;Lio/vertx/core/Handler;Lio/vertx/core/AsyncResult;)V (6)
                  (Lio/vertx/core/AsyncResult;)V
            invokeinterface io.vertx.core.Future.onComplete:(Lio/vertx/core/Handler;)Lio/vertx/core/Future;
            pop
        end local 9 // io.vertx.ext.mail.impl.SMTPSendMail sendMail
        end local 8 // java.lang.String messageId
        end local 7 // io.vertx.ext.mail.mailencoder.EncodedPart encodedPart
        end local 6 // io.vertx.ext.mail.mailencoder.MailEncoder encoder
         9: .line 168
            goto 12
      StackMap locals: io.vertx.ext.mail.impl.MailClientImpl io.vertx.ext.mail.MailMessage io.vertx.ext.mail.impl.SMTPConnection io.vertx.core.Handler io.vertx.core.Context io.vertx.core.Handler
      StackMap stack: java.lang.Exception
        10: astore 6 /* e */
        start local 6 // java.lang.Exception e
        11: .line 169
            aload 0 /* this */
            aload 6 /* e */
            aload 5 /* sentResultHandler */
            aload 4 /* context */
            invokevirtual io.vertx.ext.mail.impl.MailClientImpl.handleError:(Ljava/lang/Throwable;Lio/vertx/core/Handler;Lio/vertx/core/Context;)V
        end local 6 // java.lang.Exception e
        12: .line 171
      StackMap locals:
      StackMap stack:
            return
        end local 5 // io.vertx.core.Handler sentResultHandler
        end local 4 // io.vertx.core.Context context
        end local 3 // io.vertx.core.Handler resultHandler
        end local 2 // io.vertx.ext.mail.impl.SMTPConnection conn
        end local 1 // io.vertx.ext.mail.MailMessage email
        end local 0 // io.vertx.ext.mail.impl.MailClientImpl this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0   13     0               this  Lio/vertx/ext/mail/impl/MailClientImpl;
            0   13     1              email  Lio/vertx/ext/mail/MailMessage;
            0   13     2               conn  Lio/vertx/ext/mail/impl/SMTPConnection;
            0   13     3      resultHandler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/ext/mail/MailResult;>;>;
            0   13     4            context  Lio/vertx/core/Context;
            1   13     5  sentResultHandler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/ext/mail/MailResult;>;>;
            2    9     6            encoder  Lio/vertx/ext/mail/mailencoder/MailEncoder;
            3    9     7        encodedPart  Lio/vertx/ext/mail/mailencoder/EncodedPart;
            4    9     8          messageId  Ljava/lang/String;
            5    9     9           sendMail  Lio/vertx/ext/mail/impl/SMTPSendMail;
           11   12     6                  e  Ljava/lang/Exception;
      Exception table:
        from    to  target  type
           1     9      10  Class java.lang.Exception
    Signature: (Lio/vertx/ext/mail/MailMessage;Lio/vertx/ext/mail/impl/SMTPConnection;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/ext/mail/MailResult;>;>;Lio/vertx/core/Context;)V
    MethodParameters:
               Name  Flags
      email          
      conn           
      resultHandler  
      context        

  private boolean validateHeaders(io.vertx.ext.mail.MailMessage, io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.ext.mail.MailResult>>, io.vertx.core.Context);
    descriptor: (Lio/vertx/ext/mail/MailMessage;Lio/vertx/core/Handler;Lio/vertx/core/Context;)Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // io.vertx.ext.mail.impl.MailClientImpl this
        start local 1 // io.vertx.ext.mail.MailMessage email
        start local 2 // io.vertx.core.Handler resultHandler
        start local 3 // io.vertx.core.Context context
         0: .line 176
            aload 1 /* email */
            invokevirtual io.vertx.ext.mail.MailMessage.getBounceAddress:()Ljava/lang/String;
            ifnonnull 3
            aload 1 /* email */
            invokevirtual io.vertx.ext.mail.MailMessage.getFrom:()Ljava/lang/String;
            ifnonnull 3
         1: .line 177
            aload 0 /* this */
            ldc "sender address is not present"
            aload 2 /* resultHandler */
            aload 3 /* context */
            invokevirtual io.vertx.ext.mail.impl.MailClientImpl.handleError:(Ljava/lang/String;Lio/vertx/core/Handler;Lio/vertx/core/Context;)V
         2: .line 178
            iconst_0
            ireturn
         3: .line 179
      StackMap locals:
      StackMap stack:
            aload 1 /* email */
            invokevirtual io.vertx.ext.mail.MailMessage.getTo:()Ljava/util/List;
            ifnull 4
            aload 1 /* email */
            invokevirtual io.vertx.ext.mail.MailMessage.getTo:()Ljava/util/List;
            invokeinterface java.util.List.size:()I
            ifne 9
         4: .line 180
      StackMap locals:
      StackMap stack:
            aload 1 /* email */
            invokevirtual io.vertx.ext.mail.MailMessage.getCc:()Ljava/util/List;
            ifnull 5
            aload 1 /* email */
            invokevirtual io.vertx.ext.mail.MailMessage.getCc:()Ljava/util/List;
            invokeinterface java.util.List.size:()I
            ifne 9
         5: .line 181
      StackMap locals:
      StackMap stack:
            aload 1 /* email */
            invokevirtual io.vertx.ext.mail.MailMessage.getBcc:()Ljava/util/List;
            ifnull 6
            aload 1 /* email */
            invokevirtual io.vertx.ext.mail.MailMessage.getBcc:()Ljava/util/List;
            invokeinterface java.util.List.size:()I
            ifne 9
         6: .line 182
      StackMap locals:
      StackMap stack:
            getstatic io.vertx.ext.mail.impl.MailClientImpl.log:Lio/vertx/core/impl/logging/Logger;
            ldc "no recipient addresses are present"
            invokeinterface io.vertx.core.impl.logging.Logger.warn:(Ljava/lang/Object;)V
         7: .line 183
            aload 0 /* this */
            ldc "no recipient addresses are present"
            aload 2 /* resultHandler */
            aload 3 /* context */
            invokevirtual io.vertx.ext.mail.impl.MailClientImpl.handleError:(Ljava/lang/String;Lio/vertx/core/Handler;Lio/vertx/core/Context;)V
         8: .line 184
            iconst_0
            ireturn
         9: .line 186
      StackMap locals:
      StackMap stack:
            iconst_1
            ireturn
        end local 3 // io.vertx.core.Context context
        end local 2 // io.vertx.core.Handler resultHandler
        end local 1 // io.vertx.ext.mail.MailMessage email
        end local 0 // io.vertx.ext.mail.impl.MailClientImpl this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   10     0           this  Lio/vertx/ext/mail/impl/MailClientImpl;
            0   10     1          email  Lio/vertx/ext/mail/MailMessage;
            0   10     2  resultHandler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/ext/mail/MailResult;>;>;
            0   10     3        context  Lio/vertx/core/Context;
    Signature: (Lio/vertx/ext/mail/MailMessage;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/ext/mail/MailResult;>;>;Lio/vertx/core/Context;)Z
    MethodParameters:
               Name  Flags
      email          
      resultHandler  
      context        

  private void handleError(java.lang.String, io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.ext.mail.MailResult>>, io.vertx.core.Context);
    descriptor: (Ljava/lang/String;Lio/vertx/core/Handler;Lio/vertx/core/Context;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // io.vertx.ext.mail.impl.MailClientImpl this
        start local 1 // java.lang.String message
        start local 2 // io.vertx.core.Handler resultHandler
        start local 3 // io.vertx.core.Context context
         0: .line 191
            getstatic io.vertx.ext.mail.impl.MailClientImpl.log:Lio/vertx/core/impl/logging/Logger;
            new java.lang.StringBuilder
            dup
            ldc "handleError:"
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 1 /* message */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokeinterface io.vertx.core.impl.logging.Logger.debug:(Ljava/lang/Object;)V
         1: .line 192
            aload 0 /* this */
            aload 1 /* message */
            invokestatic io.vertx.core.Future.failedFuture:(Ljava/lang/String;)Lio/vertx/core/Future;
            aload 2 /* resultHandler */
            aload 3 /* context */
            invokevirtual io.vertx.ext.mail.impl.MailClientImpl.returnResult:(Lio/vertx/core/AsyncResult;Lio/vertx/core/Handler;Lio/vertx/core/Context;)V
         2: .line 193
            return
        end local 3 // io.vertx.core.Context context
        end local 2 // io.vertx.core.Handler resultHandler
        end local 1 // java.lang.String message
        end local 0 // io.vertx.ext.mail.impl.MailClientImpl this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    3     0           this  Lio/vertx/ext/mail/impl/MailClientImpl;
            0    3     1        message  Ljava/lang/String;
            0    3     2  resultHandler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/ext/mail/MailResult;>;>;
            0    3     3        context  Lio/vertx/core/Context;
    Signature: (Ljava/lang/String;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/ext/mail/MailResult;>;>;Lio/vertx/core/Context;)V
    MethodParameters:
               Name  Flags
      message        
      resultHandler  
      context        

  private void handleError(java.lang.Throwable, io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.ext.mail.MailResult>>, io.vertx.core.Context);
    descriptor: (Ljava/lang/Throwable;Lio/vertx/core/Handler;Lio/vertx/core/Context;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // io.vertx.ext.mail.impl.MailClientImpl this
        start local 1 // java.lang.Throwable t
        start local 2 // io.vertx.core.Handler resultHandler
        start local 3 // io.vertx.core.Context context
         0: .line 196
            getstatic io.vertx.ext.mail.impl.MailClientImpl.log:Lio/vertx/core/impl/logging/Logger;
            ldc "handleError"
            aload 1 /* t */
            invokeinterface io.vertx.core.impl.logging.Logger.debug:(Ljava/lang/Object;Ljava/lang/Throwable;)V
         1: .line 197
            aload 0 /* this */
            aload 1 /* t */
            invokestatic io.vertx.core.Future.failedFuture:(Ljava/lang/Throwable;)Lio/vertx/core/Future;
            aload 2 /* resultHandler */
            aload 3 /* context */
            invokevirtual io.vertx.ext.mail.impl.MailClientImpl.returnResult:(Lio/vertx/core/AsyncResult;Lio/vertx/core/Handler;Lio/vertx/core/Context;)V
         2: .line 198
            return
        end local 3 // io.vertx.core.Context context
        end local 2 // io.vertx.core.Handler resultHandler
        end local 1 // java.lang.Throwable t
        end local 0 // io.vertx.ext.mail.impl.MailClientImpl this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    3     0           this  Lio/vertx/ext/mail/impl/MailClientImpl;
            0    3     1              t  Ljava/lang/Throwable;
            0    3     2  resultHandler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/ext/mail/MailResult;>;>;
            0    3     3        context  Lio/vertx/core/Context;
    Signature: (Ljava/lang/Throwable;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/ext/mail/MailResult;>;>;Lio/vertx/core/Context;)V
    MethodParameters:
               Name  Flags
      t              
      resultHandler  
      context        

  private void returnResult(io.vertx.core.AsyncResult<io.vertx.ext.mail.MailResult>, io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.ext.mail.MailResult>>, io.vertx.core.Context);
    descriptor: (Lio/vertx/core/AsyncResult;Lio/vertx/core/Handler;Lio/vertx/core/Context;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=4, args_size=4
        start local 0 // io.vertx.ext.mail.impl.MailClientImpl this
        start local 1 // io.vertx.core.AsyncResult result
        start local 2 // io.vertx.core.Handler resultHandler
        start local 3 // io.vertx.core.Context context
         0: .line 202
            aload 3 /* context */
            aload 2 /* resultHandler */
            aload 1 /* result */
            invokedynamic handle(Lio/vertx/core/Handler;Lio/vertx/core/AsyncResult;)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/MailClientImpl.lambda$11(Lio/vertx/core/Handler;Lio/vertx/core/AsyncResult;Ljava/lang/Void;)V (6)
                  (Ljava/lang/Void;)V
            invokeinterface io.vertx.core.Context.runOnContext:(Lio/vertx/core/Handler;)V
         1: .line 213
            return
        end local 3 // io.vertx.core.Context context
        end local 2 // io.vertx.core.Handler resultHandler
        end local 1 // io.vertx.core.AsyncResult result
        end local 0 // io.vertx.ext.mail.impl.MailClientImpl this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    2     0           this  Lio/vertx/ext/mail/impl/MailClientImpl;
            0    2     1         result  Lio/vertx/core/AsyncResult<Lio/vertx/ext/mail/MailResult;>;
            0    2     2  resultHandler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/ext/mail/MailResult;>;>;
            0    2     3        context  Lio/vertx/core/Context;
    Signature: (Lio/vertx/core/AsyncResult<Lio/vertx/ext/mail/MailResult;>;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/ext/mail/MailResult;>;>;Lio/vertx/core/Context;)V
    MethodParameters:
               Name  Flags
      result         
      resultHandler  
      context        

  io.vertx.ext.mail.impl.SMTPConnectionPool getConnectionPool();
    descriptor: ()Lio/vertx/ext/mail/impl/SMTPConnectionPool;
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.ext.mail.impl.MailClientImpl this
         0: .line 216
            aload 0 /* this */
            getfield io.vertx.ext.mail.impl.MailClientImpl.connectionPool:Lio/vertx/ext/mail/impl/SMTPConnectionPool;
            areturn
        end local 0 // io.vertx.ext.mail.impl.MailClientImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/mail/impl/MailClientImpl;

  private io.vertx.ext.mail.impl.MailClientImpl$MailHolder lookupHolder(java.lang.String, io.vertx.ext.mail.MailConfig);
    descriptor: (Ljava/lang/String;Lio/vertx/ext/mail/MailConfig;)Lio/vertx/ext/mail/impl/MailClientImpl$MailHolder;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=7, locals=6, args_size=3
        start local 0 // io.vertx.ext.mail.impl.MailClientImpl this
        start local 1 // java.lang.String poolName
        start local 2 // io.vertx.ext.mail.MailConfig config
         0: .line 220
            aload 0 /* this */
            getfield io.vertx.ext.mail.impl.MailClientImpl.vertx:Lio/vertx/core/Vertx;
            dup
            astore 3
            monitorenter
         1: .line 221
            aload 0 /* this */
            getfield io.vertx.ext.mail.impl.MailClientImpl.vertx:Lio/vertx/core/Vertx;
            invokeinterface io.vertx.core.Vertx.sharedData:()Lio/vertx/core/shareddata/SharedData;
            ldc "__vertx.MailClient.pools"
            invokeinterface io.vertx.core.shareddata.SharedData.getLocalMap:(Ljava/lang/String;)Lio/vertx/core/shareddata/LocalMap;
            astore 4 /* map */
        start local 4 // io.vertx.core.shareddata.LocalMap map
         2: .line 222
            aload 4 /* map */
            aload 1 /* poolName */
            invokeinterface io.vertx.core.shareddata.LocalMap.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast io.vertx.ext.mail.impl.MailClientImpl$MailHolder
            astore 5 /* theHolder */
        start local 5 // io.vertx.ext.mail.impl.MailClientImpl$MailHolder theHolder
         3: .line 223
            aload 5 /* theHolder */
            ifnonnull 7
         4: .line 224
            new io.vertx.ext.mail.impl.MailClientImpl$MailHolder
            dup
            aload 0 /* this */
            getfield io.vertx.ext.mail.impl.MailClientImpl.vertx:Lio/vertx/core/Vertx;
            aload 2 /* config */
            aload 0 /* this */
            aload 4 /* map */
            aload 1 /* poolName */
            invokedynamic run(Lio/vertx/ext/mail/impl/MailClientImpl;Lio/vertx/core/shareddata/LocalMap;Ljava/lang/String;)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/ext/mail/impl/MailClientImpl.lambda$12(Lio/vertx/core/shareddata/LocalMap;Ljava/lang/String;)V (7)
                  ()V
            invokespecial io.vertx.ext.mail.impl.MailClientImpl$MailHolder.<init>:(Lio/vertx/core/Vertx;Lio/vertx/ext/mail/MailConfig;Ljava/lang/Runnable;)V
            astore 5 /* theHolder */
         5: .line 225
            aload 4 /* map */
            aload 1 /* poolName */
            aload 5 /* theHolder */
            invokeinterface io.vertx.core.shareddata.LocalMap.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
         6: .line 226
            goto 8
         7: .line 227
      StackMap locals: io.vertx.core.Vertx io.vertx.core.shareddata.LocalMap io.vertx.ext.mail.impl.MailClientImpl$MailHolder
      StackMap stack:
            aload 5 /* theHolder */
            invokevirtual io.vertx.ext.mail.impl.MailClientImpl$MailHolder.incRefCount:()V
         8: .line 229
      StackMap locals:
      StackMap stack:
            aload 5 /* theHolder */
            aload 3
            monitorexit
         9: areturn
        end local 5 // io.vertx.ext.mail.impl.MailClientImpl$MailHolder theHolder
        end local 4 // io.vertx.core.shareddata.LocalMap map
        10: .line 220
      StackMap locals: io.vertx.ext.mail.impl.MailClientImpl java.lang.String io.vertx.ext.mail.MailConfig io.vertx.core.Vertx
      StackMap stack: java.lang.Throwable
            aload 3
            monitorexit
        11: athrow
        end local 2 // io.vertx.ext.mail.MailConfig config
        end local 1 // java.lang.String poolName
        end local 0 // io.vertx.ext.mail.impl.MailClientImpl this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   12     0       this  Lio/vertx/ext/mail/impl/MailClientImpl;
            0   12     1   poolName  Ljava/lang/String;
            0   12     2     config  Lio/vertx/ext/mail/MailConfig;
            2   10     4        map  Lio/vertx/core/shareddata/LocalMap<Ljava/lang/String;Lio/vertx/ext/mail/impl/MailClientImpl$MailHolder;>;
            3   10     5  theHolder  Lio/vertx/ext/mail/impl/MailClientImpl$MailHolder;
      Exception table:
        from    to  target  type
           1     9      10  any
          10    11      10  any
    MethodParameters:
          Name  Flags
      poolName  
      config    

  private void removeFromMap(io.vertx.core.shareddata.LocalMap<java.lang.String, io.vertx.ext.mail.impl.MailClientImpl$MailHolder>, java.lang.String);
    descriptor: (Lio/vertx/core/shareddata/LocalMap;Ljava/lang/String;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=4, args_size=3
        start local 0 // io.vertx.ext.mail.impl.MailClientImpl this
        start local 1 // io.vertx.core.shareddata.LocalMap map
        start local 2 // java.lang.String dataSourceName
         0: .line 234
            aload 0 /* this */
            getfield io.vertx.ext.mail.impl.MailClientImpl.vertx:Lio/vertx/core/Vertx;
            dup
            astore 3
            monitorenter
         1: .line 235
            aload 1 /* map */
            aload 2 /* dataSourceName */
            invokeinterface io.vertx.core.shareddata.LocalMap.remove:(Ljava/lang/Object;)Ljava/lang/Object;
            pop
         2: .line 236
            aload 1 /* map */
            invokeinterface io.vertx.core.shareddata.LocalMap.isEmpty:()Z
            ifeq 4
         3: .line 237
            aload 1 /* map */
            invokeinterface io.vertx.core.shareddata.LocalMap.close:()V
         4: .line 234
      StackMap locals: io.vertx.core.Vertx
      StackMap stack:
            aload 3
            monitorexit
         5: goto 8
      StackMap locals:
      StackMap stack: java.lang.Throwable
         6: aload 3
            monitorexit
         7: athrow
         8: .line 240
      StackMap locals:
      StackMap stack:
            return
        end local 2 // java.lang.String dataSourceName
        end local 1 // io.vertx.core.shareddata.LocalMap map
        end local 0 // io.vertx.ext.mail.impl.MailClientImpl this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    9     0            this  Lio/vertx/ext/mail/impl/MailClientImpl;
            0    9     1             map  Lio/vertx/core/shareddata/LocalMap<Ljava/lang/String;Lio/vertx/ext/mail/impl/MailClientImpl$MailHolder;>;
            0    9     2  dataSourceName  Ljava/lang/String;
      Exception table:
        from    to  target  type
           1     5       6  any
           6     7       6  any
    Signature: (Lio/vertx/core/shareddata/LocalMap<Ljava/lang/String;Lio/vertx/ext/mail/impl/MailClientImpl$MailHolder;>;Ljava/lang/String;)V
    MethodParameters:
                Name  Flags
      map             
      dataSourceName  

  private static io.vertx.ext.mail.impl.dkim.DKIMSigner lambda$0(io.vertx.core.Vertx, io.vertx.ext.mail.DKIMSignOptions);
    descriptor: (Lio/vertx/core/Vertx;Lio/vertx/ext/mail/DKIMSignOptions;)Lio/vertx/ext/mail/impl/dkim/DKIMSigner;
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=4, locals=2, args_size=2
        start local 1 // io.vertx.ext.mail.DKIMSignOptions ops
         0: .line 68
            new io.vertx.ext.mail.impl.dkim.DKIMSigner
            dup
            aload 1 /* ops */
            aload 0
            invokespecial io.vertx.ext.mail.impl.dkim.DKIMSigner.<init>:(Lio/vertx/ext/mail/DKIMSignOptions;Lio/vertx/core/Vertx;)V
            areturn
        end local 1 // io.vertx.ext.mail.DKIMSignOptions ops
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     1   ops  Lio/vertx/ext/mail/DKIMSignOptions;

  private void lambda$1(io.vertx.core.Promise);
    descriptor: (Lio/vertx/core/Promise;)V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // io.vertx.ext.mail.impl.MailClientImpl this
        start local 1 // io.vertx.core.Promise fut
         0: .line 92
            aload 0 /* this */
            getfield io.vertx.ext.mail.impl.MailClientImpl.config:Lio/vertx/ext/mail/MailConfig;
            invokevirtual io.vertx.ext.mail.MailConfig.getOwnHostname:()Ljava/lang/String;
            ifnull 3
         1: .line 93
            aload 0 /* this */
            getfield io.vertx.ext.mail.impl.MailClientImpl.config:Lio/vertx/ext/mail/MailConfig;
            invokevirtual io.vertx.ext.mail.MailConfig.getOwnHostname:()Ljava/lang/String;
            astore 2 /* hname */
        start local 2 // java.lang.String hname
         2: .line 94
            goto 4
        end local 2 // java.lang.String hname
         3: .line 95
      StackMap locals:
      StackMap stack:
            invokestatic io.vertx.ext.mail.impl.Utils.getHostname:()Ljava/lang/String;
            astore 2 /* hname */
        start local 2 // java.lang.String hname
         4: .line 97
      StackMap locals: java.lang.String
      StackMap stack:
            aload 1 /* fut */
            aload 2 /* hname */
            invokeinterface io.vertx.core.Promise.complete:(Ljava/lang/Object;)V
        end local 2 // java.lang.String hname
         5: .line 98
            return
        end local 1 // io.vertx.core.Promise fut
        end local 0 // io.vertx.ext.mail.impl.MailClientImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    6     0   this  Lio/vertx/ext/mail/impl/MailClientImpl;
            0    6     1    fut  Lio/vertx/core/Promise<Ljava/lang/String;>;
            2    3     2  hname  Ljava/lang/String;
            4    5     2  hname  Ljava/lang/String;

  private void lambda$2(io.vertx.ext.mail.MailMessage, io.vertx.core.Handler, io.vertx.core.Context, io.vertx.core.AsyncResult);
    descriptor: (Lio/vertx/ext/mail/MailMessage;Lio/vertx/core/Handler;Lio/vertx/core/Context;Lio/vertx/core/AsyncResult;)V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=4, locals=5, args_size=5
        start local 0 // io.vertx.ext.mail.impl.MailClientImpl this
        start local 4 // io.vertx.core.AsyncResult res
         0: .line 100
            aload 4 /* res */
            invokeinterface io.vertx.core.AsyncResult.succeeded:()Z
            ifeq 4
         1: .line 101
            aload 0 /* this */
            aload 4 /* res */
            invokeinterface io.vertx.core.AsyncResult.result:()Ljava/lang/Object;
            checkcast java.lang.String
            putfield io.vertx.ext.mail.impl.MailClientImpl.hostname:Ljava/lang/String;
         2: .line 102
            aload 0 /* this */
            aload 1
            aload 2
            aload 3
            invokevirtual io.vertx.ext.mail.impl.MailClientImpl.getConnection:(Lio/vertx/ext/mail/MailMessage;Lio/vertx/core/Handler;Lio/vertx/core/Context;)V
         3: .line 103
            goto 5
         4: .line 104
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 4 /* res */
            invokeinterface io.vertx.core.AsyncResult.cause:()Ljava/lang/Throwable;
            aload 2
            aload 3
            invokevirtual io.vertx.ext.mail.impl.MailClientImpl.handleError:(Ljava/lang/Throwable;Lio/vertx/core/Handler;Lio/vertx/core/Context;)V
         5: .line 106
      StackMap locals:
      StackMap stack:
            return
        end local 4 // io.vertx.core.AsyncResult res
        end local 0 // io.vertx.ext.mail.impl.MailClientImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lio/vertx/ext/mail/impl/MailClientImpl;
            0    6     4   res  Lio/vertx/core/AsyncResult<Ljava/lang/String;>;

  private void lambda$3(io.vertx.core.Handler, io.vertx.core.Context, io.vertx.ext.mail.MailMessage, io.vertx.core.AsyncResult);
    descriptor: (Lio/vertx/core/Handler;Lio/vertx/core/Context;Lio/vertx/ext/mail/MailMessage;Lio/vertx/core/AsyncResult;)V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=5, locals=6, args_size=5
        start local 0 // io.vertx.ext.mail.impl.MailClientImpl this
        start local 4 // io.vertx.core.AsyncResult result
         0: .line 119
            aload 4 /* result */
            invokeinterface io.vertx.core.AsyncResult.succeeded:()Z
            ifeq 5
         1: .line 120
            aload 4 /* result */
            invokeinterface io.vertx.core.AsyncResult.result:()Ljava/lang/Object;
            checkcast io.vertx.ext.mail.impl.SMTPConnection
            astore 5 /* connection */
        start local 5 // io.vertx.ext.mail.impl.SMTPConnection connection
         2: .line 121
            aload 5 /* connection */
            aload 0 /* this */
            aload 1
            aload 2
            invokedynamic handle(Lio/vertx/ext/mail/impl/MailClientImpl;Lio/vertx/core/Handler;Lio/vertx/core/Context;)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/MailClientImpl.lambda$4(Lio/vertx/core/Handler;Lio/vertx/core/Context;Ljava/lang/Throwable;)V (7)
                  (Ljava/lang/Throwable;)V
            invokevirtual io.vertx.ext.mail.impl.SMTPConnection.setErrorHandler:(Lio/vertx/core/Handler;)V
         3: .line 122
            aload 0 /* this */
            aload 3
            aload 5 /* connection */
            aload 1
            aload 2
            invokevirtual io.vertx.ext.mail.impl.MailClientImpl.sendMessage:(Lio/vertx/ext/mail/MailMessage;Lio/vertx/ext/mail/impl/SMTPConnection;Lio/vertx/core/Handler;Lio/vertx/core/Context;)V
        end local 5 // io.vertx.ext.mail.impl.SMTPConnection connection
         4: .line 123
            goto 6
         5: .line 124
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 4 /* result */
            invokeinterface io.vertx.core.AsyncResult.cause:()Ljava/lang/Throwable;
            aload 1
            aload 2
            invokevirtual io.vertx.ext.mail.impl.MailClientImpl.handleError:(Ljava/lang/Throwable;Lio/vertx/core/Handler;Lio/vertx/core/Context;)V
         6: .line 126
      StackMap locals:
      StackMap stack:
            return
        end local 4 // io.vertx.core.AsyncResult result
        end local 0 // io.vertx.ext.mail.impl.MailClientImpl this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    7     0        this  Lio/vertx/ext/mail/impl/MailClientImpl;
            0    7     4      result  Lio/vertx/core/AsyncResult<Lio/vertx/ext/mail/impl/SMTPConnection;>;
            2    4     5  connection  Lio/vertx/ext/mail/impl/SMTPConnection;

  private static void lambda$5(java.util.List, io.vertx.core.Context, io.vertx.ext.mail.mailencoder.EncodedPart, io.vertx.ext.mail.impl.dkim.DKIMSigner);
    descriptor: (Ljava/util/List;Lio/vertx/core/Context;Lio/vertx/ext/mail/mailencoder/EncodedPart;Lio/vertx/ext/mail/impl/dkim/DKIMSigner;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=4, locals=4, args_size=4
        start local 3 // io.vertx.ext.mail.impl.dkim.DKIMSigner dkim
         0: .line 132
            aload 0
            aload 3 /* dkim */
            aload 1
            aload 2
            invokevirtual io.vertx.ext.mail.impl.dkim.DKIMSigner.signEmail:(Lio/vertx/core/Context;Lio/vertx/ext/mail/mailencoder/EncodedPart;)Lio/vertx/core/Future;
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            return
        end local 3 // io.vertx.ext.mail.impl.dkim.DKIMSigner dkim
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     3  dkim  Lio/vertx/ext/mail/impl/dkim/DKIMSigner;

  private static java.lang.Void lambda$6(java.util.List, io.vertx.ext.mail.mailencoder.EncodedPart, io.vertx.core.CompositeFuture);
    descriptor: (Ljava/util/List;Lio/vertx/ext/mail/mailencoder/EncodedPart;Lio/vertx/core/CompositeFuture;)Ljava/lang/Void;
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=3, locals=4, args_size=3
        start local 2 // io.vertx.core.CompositeFuture f
         0: .line 134
            aload 0
            invokeinterface java.util.List.stream:()Ljava/util/stream/Stream;
            invokedynamic apply()Ljava/util/function/Function;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;)Ljava/lang/Object;
                  io/vertx/ext/mail/impl/MailClientImpl.lambda$7(Lio/vertx/core/Future;)Ljava/lang/String; (6)
                  (Lio/vertx/core/Future;)Ljava/lang/String;
            invokeinterface java.util.stream.Stream.map:(Ljava/util/function/Function;)Ljava/util/stream/Stream;
            invokestatic java.util.stream.Collectors.toList:()Ljava/util/stream/Collector;
            invokeinterface java.util.stream.Stream.collect:(Ljava/util/stream/Collector;)Ljava/lang/Object;
            checkcast java.util.List
            astore 3 /* dkimHeaders */
        start local 3 // java.util.List dkimHeaders
         1: .line 135
            aload 1
            invokevirtual io.vertx.ext.mail.mailencoder.EncodedPart.headers:()Lio/vertx/core/MultiMap;
            ldc "DKIM-Signature"
            aload 3 /* dkimHeaders */
            invokeinterface io.vertx.core.MultiMap.add:(Ljava/lang/String;Ljava/lang/Iterable;)Lio/vertx/core/MultiMap;
            pop
         2: .line 136
            aconst_null
            areturn
        end local 3 // java.util.List dkimHeaders
        end local 2 // io.vertx.core.CompositeFuture f
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    3     2            f  Lio/vertx/core/CompositeFuture;
            1    3     3  dkimHeaders  Ljava/util/List<Ljava/lang/String;>;

  private void lambda$8(io.vertx.ext.mail.impl.SMTPConnection, io.vertx.core.Handler, io.vertx.core.Context, io.vertx.core.AsyncResult);
    descriptor: (Lio/vertx/ext/mail/impl/SMTPConnection;Lio/vertx/core/Handler;Lio/vertx/core/Context;Lio/vertx/core/AsyncResult;)V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=4, locals=5, args_size=5
        start local 0 // io.vertx.ext.mail.impl.MailClientImpl this
        start local 4 // io.vertx.core.AsyncResult result
         0: .line 143
            aload 4 /* result */
            invokeinterface io.vertx.core.AsyncResult.succeeded:()Z
            ifeq 3
         1: .line 144
            aload 1
            invokevirtual io.vertx.ext.mail.impl.SMTPConnection.returnToPool:()V
         2: .line 145
            goto 4
         3: .line 146
      StackMap locals:
      StackMap stack:
            aload 1
            invokevirtual io.vertx.ext.mail.impl.SMTPConnection.setBroken:()V
         4: .line 148
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 4 /* result */
            aload 2
            aload 3
            invokevirtual io.vertx.ext.mail.impl.MailClientImpl.returnResult:(Lio/vertx/core/AsyncResult;Lio/vertx/core/Handler;Lio/vertx/core/Context;)V
         5: .line 149
            return
        end local 4 // io.vertx.core.AsyncResult result
        end local 0 // io.vertx.ext.mail.impl.MailClientImpl this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    6     0    this  Lio/vertx/ext/mail/impl/MailClientImpl;
            0    6     4  result  Lio/vertx/core/AsyncResult<Lio/vertx/ext/mail/MailResult;>;

  private static void lambda$9(io.vertx.core.Context, io.vertx.ext.mail.impl.SMTPSendMail, io.vertx.core.Handler, io.vertx.core.AsyncResult);
    descriptor: (Lio/vertx/core/Context;Lio/vertx/ext/mail/impl/SMTPSendMail;Lio/vertx/core/Handler;Lio/vertx/core/AsyncResult;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=4, locals=4, args_size=4
        start local 3 // io.vertx.core.AsyncResult dkim
         0: .line 160
            aload 0
            aload 3 /* dkim */
            aload 1
            aload 2
            invokedynamic handle(Lio/vertx/core/AsyncResult;Lio/vertx/ext/mail/impl/SMTPSendMail;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/MailClientImpl.lambda$10(Lio/vertx/core/AsyncResult;Lio/vertx/ext/mail/impl/SMTPSendMail;Lio/vertx/core/Handler;Ljava/lang/Void;)V (6)
                  (Ljava/lang/Void;)V
            invokeinterface io.vertx.core.Context.runOnContext:(Lio/vertx/core/Handler;)V
         1: .line 166
            return
        end local 3 // io.vertx.core.AsyncResult dkim
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     3  dkim  Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;

  private static void lambda$11(io.vertx.core.Handler, io.vertx.core.AsyncResult, java.lang.Void);
    descriptor: (Lio/vertx/core/Handler;Lio/vertx/core/AsyncResult;Ljava/lang/Void;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
        start local 2 // java.lang.Void v
         0: .line 203
            aload 0
            ifnull 3
         1: .line 204
            aload 0
            aload 1
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
         2: .line 205
            goto 7
         3: .line 206
      StackMap locals:
      StackMap stack:
            aload 1
            invokeinterface io.vertx.core.AsyncResult.succeeded:()Z
            ifeq 6
         4: .line 207
            getstatic io.vertx.ext.mail.impl.MailClientImpl.log:Lio/vertx/core/impl/logging/Logger;
            ldc "dropping sendMail result"
            invokeinterface io.vertx.core.impl.logging.Logger.debug:(Ljava/lang/Object;)V
         5: .line 208
            goto 7
         6: .line 209
      StackMap locals:
      StackMap stack:
            getstatic io.vertx.ext.mail.impl.MailClientImpl.log:Lio/vertx/core/impl/logging/Logger;
            ldc "dropping sendMail failure"
            aload 1
            invokeinterface io.vertx.core.AsyncResult.cause:()Ljava/lang/Throwable;
            invokeinterface io.vertx.core.impl.logging.Logger.info:(Ljava/lang/Object;Ljava/lang/Throwable;)V
         7: .line 212
      StackMap locals:
      StackMap stack:
            return
        end local 2 // java.lang.Void v
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     2     v  Ljava/lang/Void;

  private void lambda$12(io.vertx.core.shareddata.LocalMap, java.lang.String);
    descriptor: (Lio/vertx/core/shareddata/LocalMap;Ljava/lang/String;)V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.vertx.ext.mail.impl.MailClientImpl this
         0: .line 224
            aload 0 /* this */
            aload 1
            aload 2
            invokevirtual io.vertx.ext.mail.impl.MailClientImpl.removeFromMap:(Lio/vertx/core/shareddata/LocalMap;Ljava/lang/String;)V
            return
        end local 0 // io.vertx.ext.mail.impl.MailClientImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/mail/impl/MailClientImpl;

  private void lambda$4(io.vertx.core.Handler, io.vertx.core.Context, java.lang.Throwable);
    descriptor: (Lio/vertx/core/Handler;Lio/vertx/core/Context;Ljava/lang/Throwable;)V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // io.vertx.ext.mail.impl.MailClientImpl this
        start local 3 // java.lang.Throwable th
         0: .line 121
            aload 0 /* this */
            aload 3 /* th */
            aload 1
            aload 2
            invokevirtual io.vertx.ext.mail.impl.MailClientImpl.handleError:(Ljava/lang/Throwable;Lio/vertx/core/Handler;Lio/vertx/core/Context;)V
            return
        end local 3 // java.lang.Throwable th
        end local 0 // io.vertx.ext.mail.impl.MailClientImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/mail/impl/MailClientImpl;
            0    1     3    th  Ljava/lang/Throwable;

  private static java.lang.String lambda$7(io.vertx.core.Future);
    descriptor: (Lio/vertx/core/Future;)Ljava/lang/String;
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.Future fr
         0: .line 134
            aload 0 /* fr */
            invokeinterface io.vertx.core.Future.result:()Ljava/lang/Object;
            invokevirtual java.lang.Object.toString:()Ljava/lang/String;
            areturn
        end local 0 // io.vertx.core.Future fr
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0    fr  Lio/vertx/core/Future;

  private static void lambda$10(io.vertx.core.AsyncResult, io.vertx.ext.mail.impl.SMTPSendMail, io.vertx.core.Handler, java.lang.Void);
    descriptor: (Lio/vertx/core/AsyncResult;Lio/vertx/ext/mail/impl/SMTPSendMail;Lio/vertx/core/Handler;Ljava/lang/Void;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=2, locals=4, args_size=4
        start local 3 // java.lang.Void h
         0: .line 161
            aload 0
            invokeinterface io.vertx.core.AsyncResult.succeeded:()Z
            ifeq 3
         1: .line 162
            aload 1
            aload 2
            invokevirtual io.vertx.ext.mail.impl.SMTPSendMail.startMailTransaction:(Lio/vertx/core/Handler;)V
         2: .line 163
            goto 4
         3: .line 164
      StackMap locals:
      StackMap stack:
            aload 2
            aload 0
            invokeinterface io.vertx.core.AsyncResult.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 166
      StackMap locals:
      StackMap stack:
            return
        end local 3 // java.lang.Void h
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     3     h  Ljava/lang/Void;
}
SourceFile: "MailClientImpl.java"
NestMembers:
  io.vertx.ext.mail.impl.MailClientImpl$MailHolder
InnerClasses:
  private MailHolder = io.vertx.ext.mail.impl.MailClientImpl$MailHolder of io.vertx.ext.mail.impl.MailClientImpl
  public final Lookup = java.lang.invoke.MethodHandles$Lookup of java.lang.invoke.MethodHandles