public class io.vertx.amqp.impl.AmqpClientImpl implements io.vertx.amqp.AmqpClient
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: io.vertx.amqp.impl.AmqpClientImpl
  super_class: java.lang.Object
{
  private final io.vertx.core.Vertx vertx;
    descriptor: Lio/vertx/core/Vertx;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

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

  private final io.vertx.amqp.AmqpClientOptions options;
    descriptor: Lio/vertx/amqp/AmqpClientOptions;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final java.util.List<io.vertx.amqp.AmqpConnection> connections;
    descriptor: Ljava/util/List;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/List<Lio/vertx/amqp/AmqpConnection;>;

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

  public void <init>(io.vertx.core.Vertx, io.vertx.amqp.AmqpClientOptions, boolean);
    descriptor: (Lio/vertx/core/Vertx;Lio/vertx/amqp/AmqpClientOptions;Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=4
        start local 0 // io.vertx.amqp.impl.AmqpClientImpl this
        start local 1 // io.vertx.core.Vertx vertx
        start local 2 // io.vertx.amqp.AmqpClientOptions options
        start local 3 // boolean mustCloseVertxOnClose
         0: .line 36
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 33
            aload 0 /* this */
            new java.util.concurrent.CopyOnWriteArrayList
            dup
            invokespecial java.util.concurrent.CopyOnWriteArrayList.<init>:()V
            putfield io.vertx.amqp.impl.AmqpClientImpl.connections:Ljava/util/List;
         2: .line 37
            aload 0 /* this */
            aload 1 /* vertx */
            putfield io.vertx.amqp.impl.AmqpClientImpl.vertx:Lio/vertx/core/Vertx;
         3: .line 38
            aload 2 /* options */
            ifnonnull 6
         4: .line 39
            aload 0 /* this */
            new io.vertx.amqp.AmqpClientOptions
            dup
            invokespecial io.vertx.amqp.AmqpClientOptions.<init>:()V
            putfield io.vertx.amqp.impl.AmqpClientImpl.options:Lio/vertx/amqp/AmqpClientOptions;
         5: .line 40
            goto 7
         6: .line 41
      StackMap locals: io.vertx.amqp.impl.AmqpClientImpl io.vertx.core.Vertx io.vertx.amqp.AmqpClientOptions int
      StackMap stack:
            aload 0 /* this */
            aload 2 /* options */
            putfield io.vertx.amqp.impl.AmqpClientImpl.options:Lio/vertx/amqp/AmqpClientOptions;
         7: .line 43
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* vertx */
            invokestatic io.vertx.proton.ProtonClient.create:(Lio/vertx/core/Vertx;)Lio/vertx/proton/ProtonClient;
            putfield io.vertx.amqp.impl.AmqpClientImpl.proton:Lio/vertx/proton/ProtonClient;
         8: .line 44
            aload 0 /* this */
            iload 3 /* mustCloseVertxOnClose */
            putfield io.vertx.amqp.impl.AmqpClientImpl.mustCloseVertxOnClose:Z
         9: .line 45
            return
        end local 3 // boolean mustCloseVertxOnClose
        end local 2 // io.vertx.amqp.AmqpClientOptions options
        end local 1 // io.vertx.core.Vertx vertx
        end local 0 // io.vertx.amqp.impl.AmqpClientImpl this
      LocalVariableTable:
        Start  End  Slot                   Name  Signature
            0   10     0                   this  Lio/vertx/amqp/impl/AmqpClientImpl;
            0   10     1                  vertx  Lio/vertx/core/Vertx;
            0   10     2                options  Lio/vertx/amqp/AmqpClientOptions;
            0   10     3  mustCloseVertxOnClose  Z
    MethodParameters:
                       Name  Flags
      vertx                  
      options                
      mustCloseVertxOnClose  

  public io.vertx.amqp.AmqpClient connect(io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.amqp.AmqpConnection>>);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/amqp/AmqpClient;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=2, args_size=2
        start local 0 // io.vertx.amqp.impl.AmqpClientImpl this
        start local 1 // io.vertx.core.Handler connectionHandler
         0: .line 49
            aload 0 /* this */
            getfield io.vertx.amqp.impl.AmqpClientImpl.options:Lio/vertx/amqp/AmqpClientOptions;
            invokevirtual io.vertx.amqp.AmqpClientOptions.getHost:()Ljava/lang/String;
            ldc "Host must be set"
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            pop
         1: .line 50
            aload 1 /* connectionHandler */
            ldc "Handler must not be null"
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            pop
         2: .line 51
            new io.vertx.amqp.impl.AmqpConnectionImpl
            aload 0 /* this */
            getfield io.vertx.amqp.impl.AmqpClientImpl.vertx:Lio/vertx/core/Vertx;
            invokeinterface io.vertx.core.Vertx.getOrCreateContext:()Lio/vertx/core/Context;
            aload 0 /* this */
            aload 0 /* this */
            getfield io.vertx.amqp.impl.AmqpClientImpl.options:Lio/vertx/amqp/AmqpClientOptions;
            aload 0 /* this */
            getfield io.vertx.amqp.impl.AmqpClientImpl.proton:Lio/vertx/proton/ProtonClient;
            aload 1 /* connectionHandler */
            invokespecial io.vertx.amqp.impl.AmqpConnectionImpl.<init>:(Lio/vertx/core/Context;Lio/vertx/amqp/impl/AmqpClientImpl;Lio/vertx/amqp/AmqpClientOptions;Lio/vertx/proton/ProtonClient;Lio/vertx/core/Handler;)V
         3: .line 52
            aload 0 /* this */
            areturn
        end local 1 // io.vertx.core.Handler connectionHandler
        end local 0 // io.vertx.amqp.impl.AmqpClientImpl this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0    4     0               this  Lio/vertx/amqp/impl/AmqpClientImpl;
            0    4     1  connectionHandler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/amqp/AmqpConnection;>;>;
    Signature: (Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/amqp/AmqpConnection;>;>;)Lio/vertx/amqp/AmqpClient;
    MethodParameters:
                   Name  Flags
      connectionHandler  

  public io.vertx.core.Future<io.vertx.amqp.AmqpConnection> connect();
    descriptor: ()Lio/vertx/core/Future;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // io.vertx.amqp.impl.AmqpClientImpl this
         0: .line 57
            invokestatic io.vertx.core.Promise.promise:()Lio/vertx/core/Promise;
            astore 1 /* promise */
        start local 1 // io.vertx.core.Promise promise
         1: .line 58
            aload 0 /* this */
            aload 1 /* promise */
            invokevirtual io.vertx.amqp.impl.AmqpClientImpl.connect:(Lio/vertx/core/Handler;)Lio/vertx/amqp/AmqpClient;
            pop
         2: .line 59
            aload 1 /* promise */
            invokeinterface io.vertx.core.Promise.future:()Lio/vertx/core/Future;
            areturn
        end local 1 // io.vertx.core.Promise promise
        end local 0 // io.vertx.amqp.impl.AmqpClientImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0     this  Lio/vertx/amqp/impl/AmqpClientImpl;
            1    3     1  promise  Lio/vertx/core/Promise<Lio/vertx/amqp/AmqpConnection;>;
    Signature: ()Lio/vertx/core/Future<Lio/vertx/amqp/AmqpConnection;>;

  public void close(io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>);
    descriptor: (Lio/vertx/core/Handler;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=6, args_size=2
        start local 0 // io.vertx.amqp.impl.AmqpClientImpl this
        start local 1 // io.vertx.core.Handler handler
         0: .line 64
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            astore 2 /* actions */
        start local 2 // java.util.List actions
         1: .line 65
            aload 0 /* this */
            getfield io.vertx.amqp.impl.AmqpClientImpl.connections:Ljava/util/List;
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 4
            goto 6
      StackMap locals: io.vertx.amqp.impl.AmqpClientImpl io.vertx.core.Handler java.util.List top java.util.Iterator
      StackMap stack:
         2: aload 4
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast io.vertx.amqp.AmqpConnection
            astore 3 /* connection */
        start local 3 // io.vertx.amqp.AmqpConnection connection
         3: .line 66
            invokestatic io.vertx.core.Promise.promise:()Lio/vertx/core/Promise;
            astore 5 /* future */
        start local 5 // io.vertx.core.Promise future
         4: .line 67
            aload 3 /* connection */
            aload 5 /* future */
            invokeinterface io.vertx.amqp.AmqpConnection.close:(Lio/vertx/core/Handler;)Lio/vertx/amqp/AmqpConnection;
            pop
         5: .line 68
            aload 2 /* actions */
            aload 5 /* future */
            invokeinterface io.vertx.core.Promise.future:()Lio/vertx/core/Future;
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        end local 5 // io.vertx.core.Promise future
        end local 3 // io.vertx.amqp.AmqpConnection connection
         6: .line 65
      StackMap locals:
      StackMap stack:
            aload 4
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 2
         7: .line 71
            aload 2 /* actions */
            invokestatic io.vertx.core.CompositeFuture.join:(Ljava/util/List;)Lio/vertx/core/CompositeFuture;
            aload 0 /* this */
            aload 1 /* handler */
            invokedynamic handle(Lio/vertx/amqp/impl/AmqpClientImpl;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/amqp/impl/AmqpClientImpl.lambda$0(Lio/vertx/core/Handler;Lio/vertx/core/AsyncResult;)V (7)
                  (Lio/vertx/core/AsyncResult;)V
            invokeinterface io.vertx.core.CompositeFuture.onComplete:(Lio/vertx/core/Handler;)Lio/vertx/core/CompositeFuture;
            pop
         8: .line 89
            return
        end local 2 // java.util.List actions
        end local 1 // io.vertx.core.Handler handler
        end local 0 // io.vertx.amqp.impl.AmqpClientImpl this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    9     0        this  Lio/vertx/amqp/impl/AmqpClientImpl;
            0    9     1     handler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;
            1    9     2     actions  Ljava/util/List<Lio/vertx/core/Future;>;
            3    6     3  connection  Lio/vertx/amqp/AmqpConnection;
            4    6     5      future  Lio/vertx/core/Promise<Ljava/lang/Void;>;
    Signature: (Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;)V
    MethodParameters:
         Name  Flags
      handler  

  public io.vertx.core.Future<java.lang.Void> close();
    descriptor: ()Lio/vertx/core/Future;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // io.vertx.amqp.impl.AmqpClientImpl this
         0: .line 93
            invokestatic io.vertx.core.Promise.promise:()Lio/vertx/core/Promise;
            astore 1 /* promise */
        start local 1 // io.vertx.core.Promise promise
         1: .line 94
            aload 0 /* this */
            aload 1 /* promise */
            invokevirtual io.vertx.amqp.impl.AmqpClientImpl.close:(Lio/vertx/core/Handler;)V
         2: .line 95
            aload 1 /* promise */
            invokeinterface io.vertx.core.Promise.future:()Lio/vertx/core/Future;
            areturn
        end local 1 // io.vertx.core.Promise promise
        end local 0 // io.vertx.amqp.impl.AmqpClientImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0     this  Lio/vertx/amqp/impl/AmqpClientImpl;
            1    3     1  promise  Lio/vertx/core/Promise<Ljava/lang/Void;>;
    Signature: ()Lio/vertx/core/Future<Ljava/lang/Void;>;

  public io.vertx.amqp.AmqpClient createReceiver(java.lang.String, io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.amqp.AmqpReceiver>>);
    descriptor: (Ljava/lang/String;Lio/vertx/core/Handler;)Lio/vertx/amqp/AmqpClient;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.vertx.amqp.impl.AmqpClientImpl this
        start local 1 // java.lang.String address
        start local 2 // io.vertx.core.Handler completionHandler
         0: .line 101
            aload 0 /* this */
            aload 2 /* completionHandler */
            aload 1 /* address */
            invokedynamic handle(Lio/vertx/core/Handler;Ljava/lang/String;)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/amqp/impl/AmqpClientImpl.lambda$2(Lio/vertx/core/Handler;Ljava/lang/String;Lio/vertx/core/AsyncResult;)V (6)
                  (Lio/vertx/core/AsyncResult;)V
            invokevirtual io.vertx.amqp.impl.AmqpClientImpl.connect:(Lio/vertx/core/Handler;)Lio/vertx/amqp/AmqpClient;
            areturn
        end local 2 // io.vertx.core.Handler completionHandler
        end local 1 // java.lang.String address
        end local 0 // io.vertx.amqp.impl.AmqpClientImpl this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0    1     0               this  Lio/vertx/amqp/impl/AmqpClientImpl;
            0    1     1            address  Ljava/lang/String;
            0    1     2  completionHandler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/amqp/AmqpReceiver;>;>;
    Signature: (Ljava/lang/String;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/amqp/AmqpReceiver;>;>;)Lio/vertx/amqp/AmqpClient;
    MethodParameters:
                   Name  Flags
      address            
      completionHandler  

  public io.vertx.core.Future<io.vertx.amqp.AmqpReceiver> createReceiver(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/core/Future;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // io.vertx.amqp.impl.AmqpClientImpl this
        start local 1 // java.lang.String address
         0: .line 112
            invokestatic io.vertx.core.Promise.promise:()Lio/vertx/core/Promise;
            astore 2 /* promise */
        start local 2 // io.vertx.core.Promise promise
         1: .line 113
            aload 0 /* this */
            aload 1 /* address */
            aload 2 /* promise */
            invokevirtual io.vertx.amqp.impl.AmqpClientImpl.createReceiver:(Ljava/lang/String;Lio/vertx/core/Handler;)Lio/vertx/amqp/AmqpClient;
            pop
         2: .line 114
            aload 2 /* promise */
            invokeinterface io.vertx.core.Promise.future:()Lio/vertx/core/Future;
            areturn
        end local 2 // io.vertx.core.Promise promise
        end local 1 // java.lang.String address
        end local 0 // io.vertx.amqp.impl.AmqpClientImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0     this  Lio/vertx/amqp/impl/AmqpClientImpl;
            0    3     1  address  Ljava/lang/String;
            1    3     2  promise  Lio/vertx/core/Promise<Lio/vertx/amqp/AmqpReceiver;>;
    Signature: (Ljava/lang/String;)Lio/vertx/core/Future<Lio/vertx/amqp/AmqpReceiver;>;
    MethodParameters:
         Name  Flags
      address  

  public io.vertx.amqp.AmqpClient createReceiver(java.lang.String, io.vertx.amqp.AmqpReceiverOptions, io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.amqp.AmqpReceiver>>);
    descriptor: (Ljava/lang/String;Lio/vertx/amqp/AmqpReceiverOptions;Lio/vertx/core/Handler;)Lio/vertx/amqp/AmqpClient;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // io.vertx.amqp.impl.AmqpClientImpl this
        start local 1 // java.lang.String address
        start local 2 // io.vertx.amqp.AmqpReceiverOptions receiverOptions
        start local 3 // io.vertx.core.Handler completionHandler
         0: .line 119
            aload 0 /* this */
            aload 3 /* completionHandler */
            aload 1 /* address */
            aload 2 /* receiverOptions */
            invokedynamic handle(Lio/vertx/core/Handler;Ljava/lang/String;Lio/vertx/amqp/AmqpReceiverOptions;)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/amqp/impl/AmqpClientImpl.lambda$3(Lio/vertx/core/Handler;Ljava/lang/String;Lio/vertx/amqp/AmqpReceiverOptions;Lio/vertx/core/AsyncResult;)V (6)
                  (Lio/vertx/core/AsyncResult;)V
            invokevirtual io.vertx.amqp.impl.AmqpClientImpl.connect:(Lio/vertx/core/Handler;)Lio/vertx/amqp/AmqpClient;
            areturn
        end local 3 // io.vertx.core.Handler completionHandler
        end local 2 // io.vertx.amqp.AmqpReceiverOptions receiverOptions
        end local 1 // java.lang.String address
        end local 0 // io.vertx.amqp.impl.AmqpClientImpl this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0    1     0               this  Lio/vertx/amqp/impl/AmqpClientImpl;
            0    1     1            address  Ljava/lang/String;
            0    1     2    receiverOptions  Lio/vertx/amqp/AmqpReceiverOptions;
            0    1     3  completionHandler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/amqp/AmqpReceiver;>;>;
    Signature: (Ljava/lang/String;Lio/vertx/amqp/AmqpReceiverOptions;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/amqp/AmqpReceiver;>;>;)Lio/vertx/amqp/AmqpClient;
    MethodParameters:
                   Name  Flags
      address            
      receiverOptions    
      completionHandler  

  public io.vertx.core.Future<io.vertx.amqp.AmqpReceiver> createReceiver(java.lang.String, io.vertx.amqp.AmqpReceiverOptions);
    descriptor: (Ljava/lang/String;Lio/vertx/amqp/AmqpReceiverOptions;)Lio/vertx/core/Future;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // io.vertx.amqp.impl.AmqpClientImpl this
        start local 1 // java.lang.String address
        start local 2 // io.vertx.amqp.AmqpReceiverOptions receiverOptions
         0: .line 130
            invokestatic io.vertx.core.Promise.promise:()Lio/vertx/core/Promise;
            astore 3 /* promise */
        start local 3 // io.vertx.core.Promise promise
         1: .line 131
            aload 0 /* this */
            aload 1 /* address */
            aload 2 /* receiverOptions */
            aload 3 /* promise */
            invokevirtual io.vertx.amqp.impl.AmqpClientImpl.createReceiver:(Ljava/lang/String;Lio/vertx/amqp/AmqpReceiverOptions;Lio/vertx/core/Handler;)Lio/vertx/amqp/AmqpClient;
            pop
         2: .line 132
            aload 3 /* promise */
            invokeinterface io.vertx.core.Promise.future:()Lio/vertx/core/Future;
            areturn
        end local 3 // io.vertx.core.Promise promise
        end local 2 // io.vertx.amqp.AmqpReceiverOptions receiverOptions
        end local 1 // java.lang.String address
        end local 0 // io.vertx.amqp.impl.AmqpClientImpl this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    3     0             this  Lio/vertx/amqp/impl/AmqpClientImpl;
            0    3     1          address  Ljava/lang/String;
            0    3     2  receiverOptions  Lio/vertx/amqp/AmqpReceiverOptions;
            1    3     3          promise  Lio/vertx/core/Promise<Lio/vertx/amqp/AmqpReceiver;>;
    Signature: (Ljava/lang/String;Lio/vertx/amqp/AmqpReceiverOptions;)Lio/vertx/core/Future<Lio/vertx/amqp/AmqpReceiver;>;
    MethodParameters:
                 Name  Flags
      address          
      receiverOptions  

  public io.vertx.amqp.AmqpClient createSender(java.lang.String, io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.amqp.AmqpSender>>);
    descriptor: (Ljava/lang/String;Lio/vertx/core/Handler;)Lio/vertx/amqp/AmqpClient;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.vertx.amqp.impl.AmqpClientImpl this
        start local 1 // java.lang.String address
        start local 2 // io.vertx.core.Handler completionHandler
         0: .line 137
            aload 0 /* this */
            aload 2 /* completionHandler */
            aload 1 /* address */
            invokedynamic handle(Lio/vertx/core/Handler;Ljava/lang/String;)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/amqp/impl/AmqpClientImpl.lambda$4(Lio/vertx/core/Handler;Ljava/lang/String;Lio/vertx/core/AsyncResult;)V (6)
                  (Lio/vertx/core/AsyncResult;)V
            invokevirtual io.vertx.amqp.impl.AmqpClientImpl.connect:(Lio/vertx/core/Handler;)Lio/vertx/amqp/AmqpClient;
            areturn
        end local 2 // io.vertx.core.Handler completionHandler
        end local 1 // java.lang.String address
        end local 0 // io.vertx.amqp.impl.AmqpClientImpl this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0    1     0               this  Lio/vertx/amqp/impl/AmqpClientImpl;
            0    1     1            address  Ljava/lang/String;
            0    1     2  completionHandler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/amqp/AmqpSender;>;>;
    Signature: (Ljava/lang/String;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/amqp/AmqpSender;>;>;)Lio/vertx/amqp/AmqpClient;
    MethodParameters:
                   Name  Flags
      address            
      completionHandler  

  public io.vertx.core.Future<io.vertx.amqp.AmqpSender> createSender(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/core/Future;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // io.vertx.amqp.impl.AmqpClientImpl this
        start local 1 // java.lang.String address
         0: .line 148
            invokestatic io.vertx.core.Promise.promise:()Lio/vertx/core/Promise;
            astore 2 /* promise */
        start local 2 // io.vertx.core.Promise promise
         1: .line 149
            aload 0 /* this */
            aload 1 /* address */
            aload 2 /* promise */
            invokevirtual io.vertx.amqp.impl.AmqpClientImpl.createSender:(Ljava/lang/String;Lio/vertx/core/Handler;)Lio/vertx/amqp/AmqpClient;
            pop
         2: .line 150
            aload 2 /* promise */
            invokeinterface io.vertx.core.Promise.future:()Lio/vertx/core/Future;
            areturn
        end local 2 // io.vertx.core.Promise promise
        end local 1 // java.lang.String address
        end local 0 // io.vertx.amqp.impl.AmqpClientImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0     this  Lio/vertx/amqp/impl/AmqpClientImpl;
            0    3     1  address  Ljava/lang/String;
            1    3     2  promise  Lio/vertx/core/Promise<Lio/vertx/amqp/AmqpSender;>;
    Signature: (Ljava/lang/String;)Lio/vertx/core/Future<Lio/vertx/amqp/AmqpSender;>;
    MethodParameters:
         Name  Flags
      address  

  public io.vertx.amqp.AmqpClient createSender(java.lang.String, io.vertx.amqp.AmqpSenderOptions, io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.amqp.AmqpSender>>);
    descriptor: (Ljava/lang/String;Lio/vertx/amqp/AmqpSenderOptions;Lio/vertx/core/Handler;)Lio/vertx/amqp/AmqpClient;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // io.vertx.amqp.impl.AmqpClientImpl this
        start local 1 // java.lang.String address
        start local 2 // io.vertx.amqp.AmqpSenderOptions options
        start local 3 // io.vertx.core.Handler completionHandler
         0: .line 156
            aload 0 /* this */
            aload 3 /* completionHandler */
            aload 1 /* address */
            aload 2 /* options */
            invokedynamic handle(Lio/vertx/core/Handler;Ljava/lang/String;Lio/vertx/amqp/AmqpSenderOptions;)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/amqp/impl/AmqpClientImpl.lambda$5(Lio/vertx/core/Handler;Ljava/lang/String;Lio/vertx/amqp/AmqpSenderOptions;Lio/vertx/core/AsyncResult;)V (6)
                  (Lio/vertx/core/AsyncResult;)V
            invokevirtual io.vertx.amqp.impl.AmqpClientImpl.connect:(Lio/vertx/core/Handler;)Lio/vertx/amqp/AmqpClient;
            areturn
        end local 3 // io.vertx.core.Handler completionHandler
        end local 2 // io.vertx.amqp.AmqpSenderOptions options
        end local 1 // java.lang.String address
        end local 0 // io.vertx.amqp.impl.AmqpClientImpl this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0    1     0               this  Lio/vertx/amqp/impl/AmqpClientImpl;
            0    1     1            address  Ljava/lang/String;
            0    1     2            options  Lio/vertx/amqp/AmqpSenderOptions;
            0    1     3  completionHandler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/amqp/AmqpSender;>;>;
    Signature: (Ljava/lang/String;Lio/vertx/amqp/AmqpSenderOptions;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/amqp/AmqpSender;>;>;)Lio/vertx/amqp/AmqpClient;
    MethodParameters:
                   Name  Flags
      address            
      options            
      completionHandler  

  public io.vertx.core.Future<io.vertx.amqp.AmqpSender> createSender(java.lang.String, io.vertx.amqp.AmqpSenderOptions);
    descriptor: (Ljava/lang/String;Lio/vertx/amqp/AmqpSenderOptions;)Lio/vertx/core/Future;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // io.vertx.amqp.impl.AmqpClientImpl this
        start local 1 // java.lang.String address
        start local 2 // io.vertx.amqp.AmqpSenderOptions options
         0: .line 167
            invokestatic io.vertx.core.Promise.promise:()Lio/vertx/core/Promise;
            astore 3 /* promise */
        start local 3 // io.vertx.core.Promise promise
         1: .line 168
            aload 0 /* this */
            aload 1 /* address */
            aload 2 /* options */
            aload 3 /* promise */
            invokevirtual io.vertx.amqp.impl.AmqpClientImpl.createSender:(Ljava/lang/String;Lio/vertx/amqp/AmqpSenderOptions;Lio/vertx/core/Handler;)Lio/vertx/amqp/AmqpClient;
            pop
         2: .line 169
            aload 3 /* promise */
            invokeinterface io.vertx.core.Promise.future:()Lio/vertx/core/Future;
            areturn
        end local 3 // io.vertx.core.Promise promise
        end local 2 // io.vertx.amqp.AmqpSenderOptions options
        end local 1 // java.lang.String address
        end local 0 // io.vertx.amqp.impl.AmqpClientImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0     this  Lio/vertx/amqp/impl/AmqpClientImpl;
            0    3     1  address  Ljava/lang/String;
            0    3     2  options  Lio/vertx/amqp/AmqpSenderOptions;
            1    3     3  promise  Lio/vertx/core/Promise<Lio/vertx/amqp/AmqpSender;>;
    Signature: (Ljava/lang/String;Lio/vertx/amqp/AmqpSenderOptions;)Lio/vertx/core/Future<Lio/vertx/amqp/AmqpSender;>;
    MethodParameters:
         Name  Flags
      address  
      options  

  synchronized void register(io.vertx.amqp.impl.AmqpConnectionImpl);
    descriptor: (Lio/vertx/amqp/impl/AmqpConnectionImpl;)V
    flags: (0x0020) ACC_SYNCHRONIZED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.amqp.impl.AmqpClientImpl this
        start local 1 // io.vertx.amqp.impl.AmqpConnectionImpl connection
         0: .line 173
            aload 0 /* this */
            getfield io.vertx.amqp.impl.AmqpClientImpl.connections:Ljava/util/List;
            aload 1 /* connection */
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
         1: .line 174
            return
        end local 1 // io.vertx.amqp.impl.AmqpConnectionImpl connection
        end local 0 // io.vertx.amqp.impl.AmqpClientImpl this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    2     0        this  Lio/vertx/amqp/impl/AmqpClientImpl;
            0    2     1  connection  Lio/vertx/amqp/impl/AmqpConnectionImpl;
    MethodParameters:
            Name  Flags
      connection  

  private void lambda$0(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=3, args_size=3
        start local 0 // io.vertx.amqp.impl.AmqpClientImpl this
        start local 2 // io.vertx.core.AsyncResult done
         0: .line 72
            aload 0 /* this */
            getfield io.vertx.amqp.impl.AmqpClientImpl.connections:Ljava/util/List;
            invokeinterface java.util.List.clear:()V
         1: .line 73
            aload 0 /* this */
            getfield io.vertx.amqp.impl.AmqpClientImpl.mustCloseVertxOnClose:Z
            ifeq 4
         2: .line 74
            aload 0 /* this */
            getfield io.vertx.amqp.impl.AmqpClientImpl.vertx:Lio/vertx/core/Vertx;
            aload 2 /* done */
            aload 1
            invokedynamic handle(Lio/vertx/core/AsyncResult;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/amqp/impl/AmqpClientImpl.lambda$1(Lio/vertx/core/AsyncResult;Lio/vertx/core/Handler;Lio/vertx/core/AsyncResult;)V (6)
                  (Lio/vertx/core/AsyncResult;)V
            invokeinterface io.vertx.core.Vertx.close:(Lio/vertx/core/Handler;)V
         3: .line 85
            goto 6
      StackMap locals:
      StackMap stack:
         4: aload 1
            ifnull 6
         5: .line 86
            aload 1
            aload 2 /* done */
            invokeinterface io.vertx.core.AsyncResult.mapEmpty:()Lio/vertx/core/AsyncResult;
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
         6: .line 88
      StackMap locals:
      StackMap stack:
            return
        end local 2 // io.vertx.core.AsyncResult done
        end local 0 // io.vertx.amqp.impl.AmqpClientImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lio/vertx/amqp/impl/AmqpClientImpl;
            0    7     2  done  Lio/vertx/core/AsyncResult<Lio/vertx/core/CompositeFuture;>;

  private static void lambda$2(io.vertx.core.Handler, java.lang.String, io.vertx.core.AsyncResult);
    descriptor: (Lio/vertx/core/Handler;Ljava/lang/String;Lio/vertx/core/AsyncResult;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
        start local 2 // io.vertx.core.AsyncResult res
         0: .line 102
            aload 2 /* res */
            invokeinterface io.vertx.core.AsyncResult.failed:()Z
            ifeq 3
         1: .line 103
            aload 0
            aload 2 /* res */
            invokeinterface io.vertx.core.AsyncResult.mapEmpty:()Lio/vertx/core/AsyncResult;
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
         2: .line 104
            goto 4
         3: .line 105
      StackMap locals:
      StackMap stack:
            aload 2 /* res */
            invokeinterface io.vertx.core.AsyncResult.result:()Ljava/lang/Object;
            checkcast io.vertx.amqp.AmqpConnection
            aload 1
            aload 0
            invokeinterface io.vertx.amqp.AmqpConnection.createReceiver:(Ljava/lang/String;Lio/vertx/core/Handler;)Lio/vertx/amqp/AmqpConnection;
            pop
         4: .line 107
      StackMap locals:
      StackMap stack:
            return
        end local 2 // io.vertx.core.AsyncResult res
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     2   res  Lio/vertx/core/AsyncResult<Lio/vertx/amqp/AmqpConnection;>;

  private static void lambda$3(io.vertx.core.Handler, java.lang.String, io.vertx.amqp.AmqpReceiverOptions, io.vertx.core.AsyncResult);
    descriptor: (Lio/vertx/core/Handler;Ljava/lang/String;Lio/vertx/amqp/AmqpReceiverOptions;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 res
         0: .line 120
            aload 3 /* res */
            invokeinterface io.vertx.core.AsyncResult.failed:()Z
            ifeq 3
         1: .line 121
            aload 0
            aload 3 /* res */
            invokeinterface io.vertx.core.AsyncResult.mapEmpty:()Lio/vertx/core/AsyncResult;
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
         2: .line 122
            goto 4
         3: .line 123
      StackMap locals:
      StackMap stack:
            aload 3 /* res */
            invokeinterface io.vertx.core.AsyncResult.result:()Ljava/lang/Object;
            checkcast io.vertx.amqp.AmqpConnection
            aload 1
            aload 2
            aload 0
            invokeinterface io.vertx.amqp.AmqpConnection.createReceiver:(Ljava/lang/String;Lio/vertx/amqp/AmqpReceiverOptions;Lio/vertx/core/Handler;)Lio/vertx/amqp/AmqpConnection;
            pop
         4: .line 125
      StackMap locals:
      StackMap stack:
            return
        end local 3 // io.vertx.core.AsyncResult res
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     3   res  Lio/vertx/core/AsyncResult<Lio/vertx/amqp/AmqpConnection;>;

  private static void lambda$4(io.vertx.core.Handler, java.lang.String, io.vertx.core.AsyncResult);
    descriptor: (Lio/vertx/core/Handler;Ljava/lang/String;Lio/vertx/core/AsyncResult;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
        start local 2 // io.vertx.core.AsyncResult res
         0: .line 138
            aload 2 /* res */
            invokeinterface io.vertx.core.AsyncResult.failed:()Z
            ifeq 3
         1: .line 139
            aload 0
            aload 2 /* res */
            invokeinterface io.vertx.core.AsyncResult.mapEmpty:()Lio/vertx/core/AsyncResult;
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
         2: .line 140
            goto 4
         3: .line 141
      StackMap locals:
      StackMap stack:
            aload 2 /* res */
            invokeinterface io.vertx.core.AsyncResult.result:()Ljava/lang/Object;
            checkcast io.vertx.amqp.AmqpConnection
            aload 1
            aload 0
            invokeinterface io.vertx.amqp.AmqpConnection.createSender:(Ljava/lang/String;Lio/vertx/core/Handler;)Lio/vertx/amqp/AmqpConnection;
            pop
         4: .line 143
      StackMap locals:
      StackMap stack:
            return
        end local 2 // io.vertx.core.AsyncResult res
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     2   res  Lio/vertx/core/AsyncResult<Lio/vertx/amqp/AmqpConnection;>;

  private static void lambda$5(io.vertx.core.Handler, java.lang.String, io.vertx.amqp.AmqpSenderOptions, io.vertx.core.AsyncResult);
    descriptor: (Lio/vertx/core/Handler;Ljava/lang/String;Lio/vertx/amqp/AmqpSenderOptions;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 res
         0: .line 157
            aload 3 /* res */
            invokeinterface io.vertx.core.AsyncResult.failed:()Z
            ifeq 3
         1: .line 158
            aload 0
            aload 3 /* res */
            invokeinterface io.vertx.core.AsyncResult.mapEmpty:()Lio/vertx/core/AsyncResult;
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
         2: .line 159
            goto 4
         3: .line 160
      StackMap locals:
      StackMap stack:
            aload 3 /* res */
            invokeinterface io.vertx.core.AsyncResult.result:()Ljava/lang/Object;
            checkcast io.vertx.amqp.AmqpConnection
            aload 1
            aload 2
            aload 0
            invokeinterface io.vertx.amqp.AmqpConnection.createSender:(Ljava/lang/String;Lio/vertx/amqp/AmqpSenderOptions;Lio/vertx/core/Handler;)Lio/vertx/amqp/AmqpConnection;
            pop
         4: .line 162
      StackMap locals:
      StackMap stack:
            return
        end local 3 // io.vertx.core.AsyncResult res
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     3   res  Lio/vertx/core/AsyncResult<Lio/vertx/amqp/AmqpConnection;>;

  private static void lambda$1(io.vertx.core.AsyncResult, io.vertx.core.Handler, io.vertx.core.AsyncResult);
    descriptor: (Lio/vertx/core/AsyncResult;Lio/vertx/core/Handler;Lio/vertx/core/AsyncResult;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=2, locals=3, args_size=3
        start local 2 // io.vertx.core.AsyncResult x
         0: .line 75
            aload 0
            invokeinterface io.vertx.core.AsyncResult.succeeded:()Z
            ifeq 4
            aload 2 /* x */
            invokeinterface io.vertx.core.AsyncResult.succeeded:()Z
            ifeq 4
         1: .line 76
            aload 1
            ifnull 8
         2: .line 77
            aload 1
            invokestatic io.vertx.core.Future.succeededFuture:()Lio/vertx/core/Future;
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
         3: .line 79
            goto 8
         4: .line 80
      StackMap locals:
      StackMap stack:
            aload 1
            ifnull 8
         5: .line 81
            aload 1
            aload 0
            invokeinterface io.vertx.core.AsyncResult.failed:()Z
            ifeq 6
            aload 0
            invokeinterface io.vertx.core.AsyncResult.cause:()Ljava/lang/Throwable;
            goto 7
      StackMap locals:
      StackMap stack: io.vertx.core.Handler
         6: aload 2 /* x */
            invokeinterface io.vertx.core.AsyncResult.cause:()Ljava/lang/Throwable;
      StackMap locals: io.vertx.core.AsyncResult io.vertx.core.Handler io.vertx.core.AsyncResult
      StackMap stack: io.vertx.core.Handler java.lang.Throwable
         7: invokestatic io.vertx.core.Future.failedFuture:(Ljava/lang/Throwable;)Lio/vertx/core/Future;
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
         8: .line 84
      StackMap locals:
      StackMap stack:
            return
        end local 2 // io.vertx.core.AsyncResult x
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     2     x  Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;
}
SourceFile: "AmqpClientImpl.java"
InnerClasses:
  public final Lookup = java.lang.invoke.MethodHandles$Lookup of java.lang.invoke.MethodHandles