public class io.vertx.amqpbridge.impl.AmqpBridgeImpl implements io.vertx.amqpbridge.AmqpBridge
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: io.vertx.amqpbridge.impl.AmqpBridgeImpl
  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.core.Context bridgeContext;
    descriptor: Lio/vertx/core/Context;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

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

  private io.vertx.proton.ProtonClient client;
    descriptor: Lio/vertx/proton/ProtonClient;
    flags: (0x0002) ACC_PRIVATE

  private io.vertx.proton.ProtonConnection connection;
    descriptor: Lio/vertx/proton/ProtonConnection;
    flags: (0x0002) ACC_PRIVATE

  private io.vertx.proton.ProtonReceiver replyToConsumer;
    descriptor: Lio/vertx/proton/ProtonReceiver;
    flags: (0x0002) ACC_PRIVATE

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

  private io.vertx.amqpbridge.impl.AmqpProducerImpl replySender;
    descriptor: Lio/vertx/amqpbridge/impl/AmqpProducerImpl;
    flags: (0x0002) ACC_PRIVATE

  private java.util.Map<java.lang.String, io.vertx.core.Handler<?>> replyToMapping;
    descriptor: Ljava/util/Map;
    flags: (0x0002) ACC_PRIVATE
    Signature: Ljava/util/Map<Ljava/lang/String;Lio/vertx/core/Handler<*>;>;

  private io.vertx.amqpbridge.impl.MessageTranslatorImpl translator;
    descriptor: Lio/vertx/amqpbridge/impl/MessageTranslatorImpl;
    flags: (0x0002) ACC_PRIVATE

  private java.util.concurrent.atomic.AtomicBoolean started;
    descriptor: Ljava/util/concurrent/atomic/AtomicBoolean;
    flags: (0x0002) ACC_PRIVATE

  private java.util.concurrent.atomic.AtomicBoolean closed;
    descriptor: Ljava/util/concurrent/atomic/AtomicBoolean;
    flags: (0x0002) ACC_PRIVATE

  private volatile io.vertx.core.Handler<java.lang.Void> endHandler;
    descriptor: Lio/vertx/core/Handler;
    flags: (0x0042) ACC_PRIVATE, ACC_VOLATILE
    Signature: Lio/vertx/core/Handler<Ljava/lang/Void;>;

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

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

  public void <init>(io.vertx.core.Vertx, io.vertx.amqpbridge.AmqpBridgeOptions);
    descriptor: (Lio/vertx/core/Vertx;Lio/vertx/amqpbridge/AmqpBridgeOptions;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.vertx.amqpbridge.impl.AmqpBridgeImpl this
        start local 1 // io.vertx.core.Vertx vertx
        start local 2 // io.vertx.amqpbridge.AmqpBridgeOptions options
         0: .line 65
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 59
            aload 0 /* this */
            new java.util.concurrent.ConcurrentHashMap
            dup
            invokespecial java.util.concurrent.ConcurrentHashMap.<init>:()V
            putfield io.vertx.amqpbridge.impl.AmqpBridgeImpl.replyToMapping:Ljava/util/Map;
         2: .line 60
            aload 0 /* this */
            new io.vertx.amqpbridge.impl.MessageTranslatorImpl
            dup
            invokespecial io.vertx.amqpbridge.impl.MessageTranslatorImpl.<init>:()V
            putfield io.vertx.amqpbridge.impl.AmqpBridgeImpl.translator:Lio/vertx/amqpbridge/impl/MessageTranslatorImpl;
         3: .line 61
            aload 0 /* this */
            new java.util.concurrent.atomic.AtomicBoolean
            dup
            invokespecial java.util.concurrent.atomic.AtomicBoolean.<init>:()V
            putfield io.vertx.amqpbridge.impl.AmqpBridgeImpl.started:Ljava/util/concurrent/atomic/AtomicBoolean;
         4: .line 62
            aload 0 /* this */
            new java.util.concurrent.atomic.AtomicBoolean
            dup
            invokespecial java.util.concurrent.atomic.AtomicBoolean.<init>:()V
            putfield io.vertx.amqpbridge.impl.AmqpBridgeImpl.closed:Ljava/util/concurrent/atomic/AtomicBoolean;
         5: .line 66
            aload 0 /* this */
            aload 1 /* vertx */
            putfield io.vertx.amqpbridge.impl.AmqpBridgeImpl.vertx:Lio/vertx/core/Vertx;
         6: .line 67
            aload 0 /* this */
            aload 2 /* options */
            putfield io.vertx.amqpbridge.impl.AmqpBridgeImpl.options:Lio/vertx/amqpbridge/AmqpBridgeOptions;
         7: .line 68
            aload 0 /* this */
            aload 1 /* vertx */
            invokeinterface io.vertx.core.Vertx.getOrCreateContext:()Lio/vertx/core/Context;
            putfield io.vertx.amqpbridge.impl.AmqpBridgeImpl.bridgeContext:Lio/vertx/core/Context;
         8: .line 69
            return
        end local 2 // io.vertx.amqpbridge.AmqpBridgeOptions options
        end local 1 // io.vertx.core.Vertx vertx
        end local 0 // io.vertx.amqpbridge.impl.AmqpBridgeImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    9     0     this  Lio/vertx/amqpbridge/impl/AmqpBridgeImpl;
            0    9     1    vertx  Lio/vertx/core/Vertx;
            0    9     2  options  Lio/vertx/amqpbridge/AmqpBridgeOptions;
    MethodParameters:
         Name  Flags
      vertx    
      options  

  public void start(java.lang.String, int, io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.amqpbridge.AmqpBridge>>);
    descriptor: (Ljava/lang/String;ILio/vertx/core/Handler;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=4, args_size=4
        start local 0 // io.vertx.amqpbridge.impl.AmqpBridgeImpl this
        start local 1 // java.lang.String hostname
        start local 2 // int port
        start local 3 // io.vertx.core.Handler resultHandler
         0: .line 75
            aload 0 /* this */
            aload 1 /* hostname */
            iload 2 /* port */
            aconst_null
            aconst_null
            aload 3 /* resultHandler */
            invokevirtual io.vertx.amqpbridge.impl.AmqpBridgeImpl.start:(Ljava/lang/String;ILjava/lang/String;Ljava/lang/String;Lio/vertx/core/Handler;)V
         1: .line 76
            return
        end local 3 // io.vertx.core.Handler resultHandler
        end local 2 // int port
        end local 1 // java.lang.String hostname
        end local 0 // io.vertx.amqpbridge.impl.AmqpBridgeImpl this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    2     0           this  Lio/vertx/amqpbridge/impl/AmqpBridgeImpl;
            0    2     1       hostname  Ljava/lang/String;
            0    2     2           port  I
            0    2     3  resultHandler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/amqpbridge/AmqpBridge;>;>;
    Signature: (Ljava/lang/String;ILio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/amqpbridge/AmqpBridge;>;>;)V
    MethodParameters:
               Name  Flags
      hostname       
      port           
      resultHandler  

  public void start(java.lang.String, int, java.lang.String, java.lang.String, io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.amqpbridge.AmqpBridge>>);
    descriptor: (Ljava/lang/String;ILjava/lang/String;Ljava/lang/String;Lio/vertx/core/Handler;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=8, locals=6, args_size=6
        start local 0 // io.vertx.amqpbridge.impl.AmqpBridgeImpl this
        start local 1 // java.lang.String hostname
        start local 2 // int port
        start local 3 // java.lang.String username
        start local 4 // java.lang.String password
        start local 5 // io.vertx.core.Handler resultHandler
         0: .line 81
            aload 0 /* this */
            iconst_1
            aload 0 /* this */
            aload 1 /* hostname */
            iload 2 /* port */
            aload 3 /* username */
            aload 4 /* password */
            aload 5 /* resultHandler */
            invokedynamic handle(Lio/vertx/amqpbridge/impl/AmqpBridgeImpl;Ljava/lang/String;ILjava/lang/String;Ljava/lang/String;Lio/vertx/core/Handler;)Lio/vertx/core/Handler;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;)V
                  io/vertx/amqpbridge/impl/AmqpBridgeImpl.lambda$0(Ljava/lang/String;ILjava/lang/String;Ljava/lang/String;Lio/vertx/core/Handler;Ljava/lang/Void;)V (7)
                  (Ljava/lang/Void;)V
            invokevirtual io.vertx.amqpbridge.impl.AmqpBridgeImpl.runOnContext:(ZLio/vertx/core/Handler;)V
         1: .line 84
            return
        end local 5 // io.vertx.core.Handler resultHandler
        end local 4 // java.lang.String password
        end local 3 // java.lang.String username
        end local 2 // int port
        end local 1 // java.lang.String hostname
        end local 0 // io.vertx.amqpbridge.impl.AmqpBridgeImpl this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    2     0           this  Lio/vertx/amqpbridge/impl/AmqpBridgeImpl;
            0    2     1       hostname  Ljava/lang/String;
            0    2     2           port  I
            0    2     3       username  Ljava/lang/String;
            0    2     4       password  Ljava/lang/String;
            0    2     5  resultHandler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/amqpbridge/AmqpBridge;>;>;
    Signature: (Ljava/lang/String;ILjava/lang/String;Ljava/lang/String;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/amqpbridge/AmqpBridge;>;>;)V
    MethodParameters:
               Name  Flags
      hostname       
      port           
      username       
      password       
      resultHandler  

  private void startImpl(java.lang.String, int, java.lang.String, java.lang.String, io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.amqpbridge.AmqpBridge>>);
    descriptor: (Ljava/lang/String;ILjava/lang/String;Ljava/lang/String;Lio/vertx/core/Handler;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=8, locals=6, args_size=6
        start local 0 // io.vertx.amqpbridge.impl.AmqpBridgeImpl this
        start local 1 // java.lang.String hostname
        start local 2 // int port
        start local 3 // java.lang.String username
        start local 4 // java.lang.String password
        start local 5 // io.vertx.core.Handler resultHandler
         0: .line 89
            aload 0 /* this */
            aload 0 /* this */
            getfield io.vertx.amqpbridge.impl.AmqpBridgeImpl.vertx:Lio/vertx/core/Vertx;
            invokestatic io.vertx.proton.ProtonClient.create:(Lio/vertx/core/Vertx;)Lio/vertx/proton/ProtonClient;
            putfield io.vertx.amqpbridge.impl.AmqpBridgeImpl.client:Lio/vertx/proton/ProtonClient;
         1: .line 90
            aload 0 /* this */
            getfield io.vertx.amqpbridge.impl.AmqpBridgeImpl.client:Lio/vertx/proton/ProtonClient;
            aload 0 /* this */
            getfield io.vertx.amqpbridge.impl.AmqpBridgeImpl.options:Lio/vertx/amqpbridge/AmqpBridgeOptions;
            aload 1 /* hostname */
            iload 2 /* port */
            aload 3 /* username */
            aload 4 /* password */
            aload 0 /* this */
            aload 5 /* resultHandler */
            invokedynamic handle(Lio/vertx/amqpbridge/impl/AmqpBridgeImpl;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/amqpbridge/impl/AmqpBridgeImpl.lambda$1(Lio/vertx/core/Handler;Lio/vertx/core/AsyncResult;)V (7)
                  (Lio/vertx/core/AsyncResult;)V
            invokeinterface io.vertx.proton.ProtonClient.connect:(Lio/vertx/proton/ProtonClientOptions;Ljava/lang/String;ILjava/lang/String;Ljava/lang/String;Lio/vertx/core/Handler;)V
         2: .line 160
            return
        end local 5 // io.vertx.core.Handler resultHandler
        end local 4 // java.lang.String password
        end local 3 // java.lang.String username
        end local 2 // int port
        end local 1 // java.lang.String hostname
        end local 0 // io.vertx.amqpbridge.impl.AmqpBridgeImpl this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    3     0           this  Lio/vertx/amqpbridge/impl/AmqpBridgeImpl;
            0    3     1       hostname  Ljava/lang/String;
            0    3     2           port  I
            0    3     3       username  Ljava/lang/String;
            0    3     4       password  Ljava/lang/String;
            0    3     5  resultHandler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/amqpbridge/AmqpBridge;>;>;
    Signature: (Ljava/lang/String;ILjava/lang/String;Ljava/lang/String;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/amqpbridge/AmqpBridge;>;>;)V
    MethodParameters:
               Name  Flags
      hostname       
      port           
      username       
      password       
      resultHandler  

  private void endHandlerImpl();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // io.vertx.amqpbridge.impl.AmqpBridgeImpl this
         0: .line 163
            aload 0 /* this */
            getfield io.vertx.amqpbridge.impl.AmqpBridgeImpl.endHandler:Lio/vertx/core/Handler;
            astore 1 /* handler */
        start local 1 // io.vertx.core.Handler handler
         1: .line 164
            aload 0 /* this */
            aconst_null
            putfield io.vertx.amqpbridge.impl.AmqpBridgeImpl.endHandler:Lio/vertx/core/Handler;
         2: .line 165
            aload 1 /* handler */
            ifnull 4
            aload 0 /* this */
            getfield io.vertx.amqpbridge.impl.AmqpBridgeImpl.closed:Ljava/util/concurrent/atomic/AtomicBoolean;
            invokevirtual java.util.concurrent.atomic.AtomicBoolean.get:()Z
            ifne 4
         3: .line 166
            aload 1 /* handler */
            aconst_null
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
         4: .line 168
      StackMap locals: io.vertx.core.Handler
      StackMap stack:
            return
        end local 1 // io.vertx.core.Handler handler
        end local 0 // io.vertx.amqpbridge.impl.AmqpBridgeImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    5     0     this  Lio/vertx/amqpbridge/impl/AmqpBridgeImpl;
            1    5     1  handler  Lio/vertx/core/Handler<Ljava/lang/Void;>;

  public io.vertx.core.eventbus.MessageConsumer<io.vertx.core.json.JsonObject> createConsumer(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/core/eventbus/MessageConsumer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // io.vertx.amqpbridge.impl.AmqpBridgeImpl this
        start local 1 // java.lang.String amqpAddress
         0: .line 173
            aload 0 /* this */
            getfield io.vertx.amqpbridge.impl.AmqpBridgeImpl.started:Ljava/util/concurrent/atomic/AtomicBoolean;
            invokevirtual java.util.concurrent.atomic.AtomicBoolean.get:()Z
            ifne 2
         1: .line 174
            new java.lang.IllegalStateException
            dup
            ldc "Bridge was not successfully started"
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 177
      StackMap locals:
      StackMap stack:
            new io.vertx.amqpbridge.impl.AmqpConsumerImpl
            dup
            aload 0 /* this */
            aload 0 /* this */
            getfield io.vertx.amqpbridge.impl.AmqpBridgeImpl.connection:Lio/vertx/proton/ProtonConnection;
            aload 1 /* amqpAddress */
            invokespecial io.vertx.amqpbridge.impl.AmqpConsumerImpl.<init>:(Lio/vertx/amqpbridge/impl/AmqpBridgeImpl;Lio/vertx/proton/ProtonConnection;Ljava/lang/String;)V
            areturn
        end local 1 // java.lang.String amqpAddress
        end local 0 // io.vertx.amqpbridge.impl.AmqpBridgeImpl this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    3     0         this  Lio/vertx/amqpbridge/impl/AmqpBridgeImpl;
            0    3     1  amqpAddress  Ljava/lang/String;
    Signature: (Ljava/lang/String;)Lio/vertx/core/eventbus/MessageConsumer<Lio/vertx/core/json/JsonObject;>;
    MethodParameters:
             Name  Flags
      amqpAddress  

  public io.vertx.core.eventbus.MessageProducer<io.vertx.core.json.JsonObject> createProducer(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/core/eventbus/MessageProducer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // io.vertx.amqpbridge.impl.AmqpBridgeImpl this
        start local 1 // java.lang.String amqpAddress
         0: .line 183
            aload 0 /* this */
            getfield io.vertx.amqpbridge.impl.AmqpBridgeImpl.started:Ljava/util/concurrent/atomic/AtomicBoolean;
            invokevirtual java.util.concurrent.atomic.AtomicBoolean.get:()Z
            ifne 2
         1: .line 184
            new java.lang.IllegalStateException
            dup
            ldc "Bridge was not successfully started"
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 187
      StackMap locals:
      StackMap stack:
            new io.vertx.amqpbridge.impl.AmqpProducerImpl
            dup
            aload 0 /* this */
            aload 0 /* this */
            getfield io.vertx.amqpbridge.impl.AmqpBridgeImpl.connection:Lio/vertx/proton/ProtonConnection;
            aload 1 /* amqpAddress */
            invokespecial io.vertx.amqpbridge.impl.AmqpProducerImpl.<init>:(Lio/vertx/amqpbridge/impl/AmqpBridgeImpl;Lio/vertx/proton/ProtonConnection;Ljava/lang/String;)V
            areturn
        end local 1 // java.lang.String amqpAddress
        end local 0 // io.vertx.amqpbridge.impl.AmqpBridgeImpl this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    3     0         this  Lio/vertx/amqpbridge/impl/AmqpBridgeImpl;
            0    3     1  amqpAddress  Ljava/lang/String;
    Signature: (Ljava/lang/String;)Lio/vertx/core/eventbus/MessageProducer<Lio/vertx/core/json/JsonObject;>;
    MethodParameters:
             Name  Flags
      amqpAddress  

  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=4, locals=2, args_size=2
        start local 0 // io.vertx.amqpbridge.impl.AmqpBridgeImpl this
        start local 1 // io.vertx.core.Handler resultHandler
         0: .line 192
            aload 0 /* this */
            getfield io.vertx.amqpbridge.impl.AmqpBridgeImpl.closed:Ljava/util/concurrent/atomic/AtomicBoolean;
            iconst_1
            invokevirtual java.util.concurrent.atomic.AtomicBoolean.set:(Z)V
         1: .line 193
            aload 0 /* this */
            iconst_1
            aload 0 /* this */
            aload 1 /* resultHandler */
            invokedynamic handle(Lio/vertx/amqpbridge/impl/AmqpBridgeImpl;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/amqpbridge/impl/AmqpBridgeImpl.lambda$7(Lio/vertx/core/Handler;Ljava/lang/Void;)V (7)
                  (Ljava/lang/Void;)V
            invokevirtual io.vertx.amqpbridge.impl.AmqpBridgeImpl.runOnContext:(ZLio/vertx/core/Handler;)V
         2: .line 196
            return
        end local 1 // io.vertx.core.Handler resultHandler
        end local 0 // io.vertx.amqpbridge.impl.AmqpBridgeImpl this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    3     0           this  Lio/vertx/amqpbridge/impl/AmqpBridgeImpl;
            0    3     1  resultHandler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;
    Signature: (Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;)V
    MethodParameters:
               Name  Flags
      resultHandler  

  private void shutdownImpl(io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>);
    descriptor: (Lio/vertx/core/Handler;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // io.vertx.amqpbridge.impl.AmqpBridgeImpl this
        start local 1 // io.vertx.core.Handler resultHandler
         0: .line 199
            aload 0 /* this */
            getfield io.vertx.amqpbridge.impl.AmqpBridgeImpl.connection:Lio/vertx/proton/ProtonConnection;
            ifnull 12
         1: .line 200
            aload 0 /* this */
            aload 0 /* this */
            getfield io.vertx.amqpbridge.impl.AmqpBridgeImpl.connection:Lio/vertx/proton/ProtonConnection;
            invokevirtual io.vertx.amqpbridge.impl.AmqpBridgeImpl.isLocalOpen:(Lio/vertx/proton/ProtonConnection;)Z
            ifeq 5
            aload 0 /* this */
            aload 0 /* this */
            getfield io.vertx.amqpbridge.impl.AmqpBridgeImpl.connection:Lio/vertx/proton/ProtonConnection;
            invokevirtual io.vertx.amqpbridge.impl.AmqpBridgeImpl.isRemoteOpen:(Lio/vertx/proton/ProtonConnection;)Z
            ifeq 5
         2: .line 201
            aload 0 /* this */
            getfield io.vertx.amqpbridge.impl.AmqpBridgeImpl.connection:Lio/vertx/proton/ProtonConnection;
            aload 0 /* this */
            aload 1 /* resultHandler */
            invokedynamic handle(Lio/vertx/amqpbridge/impl/AmqpBridgeImpl;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/amqpbridge/impl/AmqpBridgeImpl.lambda$8(Lio/vertx/core/Handler;Lio/vertx/core/AsyncResult;)V (7)
                  (Lio/vertx/core/AsyncResult;)V
            invokeinterface io.vertx.proton.ProtonConnection.closeHandler:(Lio/vertx/core/Handler;)Lio/vertx/proton/ProtonConnection;
         3: .line 211
            invokeinterface io.vertx.proton.ProtonConnection.close:()Lio/vertx/proton/ProtonConnection;
            pop
         4: .line 212
            goto 13
         5: .line 214
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual io.vertx.amqpbridge.impl.AmqpBridgeImpl.disconnectImpl:()V
         6: .line 215
            goto 10
      StackMap locals:
      StackMap stack: java.lang.Throwable
         7: astore 2
         8: .line 216
            aload 1 /* resultHandler */
            invokestatic io.vertx.core.Future.succeededFuture:()Lio/vertx/core/Future;
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
         9: .line 217
            aload 2
            athrow
        10: .line 216
      StackMap locals:
      StackMap stack:
            aload 1 /* resultHandler */
            invokestatic io.vertx.core.Future.succeededFuture:()Lio/vertx/core/Future;
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
        11: .line 219
            goto 13
        12: .line 220
      StackMap locals:
      StackMap stack:
            aload 1 /* resultHandler */
            invokestatic io.vertx.core.Future.succeededFuture:()Lio/vertx/core/Future;
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
        13: .line 222
      StackMap locals:
      StackMap stack:
            return
        end local 1 // io.vertx.core.Handler resultHandler
        end local 0 // io.vertx.amqpbridge.impl.AmqpBridgeImpl this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   14     0           this  Lio/vertx/amqpbridge/impl/AmqpBridgeImpl;
            0   14     1  resultHandler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;
      Exception table:
        from    to  target  type
           5     7       7  any
    Signature: (Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;)V
    MethodParameters:
               Name  Flags
      resultHandler  

  private void disconnectImpl();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=3, args_size=1
        start local 0 // io.vertx.amqpbridge.impl.AmqpBridgeImpl this
         0: .line 225
            aload 0 /* this */
            getfield io.vertx.amqpbridge.impl.AmqpBridgeImpl.connection:Lio/vertx/proton/ProtonConnection;
            astore 1 /* conn */
        start local 1 // io.vertx.proton.ProtonConnection conn
         1: .line 226
            aload 0 /* this */
            aconst_null
            putfield io.vertx.amqpbridge.impl.AmqpBridgeImpl.connection:Lio/vertx/proton/ProtonConnection;
         2: .line 227
            aload 1 /* conn */
            ifnull 9
         3: .line 230
            aload 1 /* conn */
            invokeinterface io.vertx.proton.ProtonConnection.close:()Lio/vertx/proton/ProtonConnection;
            pop
         4: .line 231
            goto 8
      StackMap locals: io.vertx.amqpbridge.impl.AmqpBridgeImpl io.vertx.proton.ProtonConnection
      StackMap stack: java.lang.Throwable
         5: astore 2
         6: .line 232
            aload 1 /* conn */
            invokeinterface io.vertx.proton.ProtonConnection.disconnect:()V
         7: .line 233
            aload 2
            athrow
         8: .line 232
      StackMap locals:
      StackMap stack:
            aload 1 /* conn */
            invokeinterface io.vertx.proton.ProtonConnection.disconnect:()V
         9: .line 235
      StackMap locals:
      StackMap stack:
            return
        end local 1 // io.vertx.proton.ProtonConnection conn
        end local 0 // io.vertx.amqpbridge.impl.AmqpBridgeImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   10     0  this  Lio/vertx/amqpbridge/impl/AmqpBridgeImpl;
            1   10     1  conn  Lio/vertx/proton/ProtonConnection;
      Exception table:
        from    to  target  type
           3     5       5  any

  private boolean isLocalOpen(io.vertx.proton.ProtonConnection);
    descriptor: (Lio/vertx/proton/ProtonConnection;)Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.amqpbridge.impl.AmqpBridgeImpl this
        start local 1 // io.vertx.proton.ProtonConnection connection
         0: .line 238
            aload 1 /* connection */
            checkcast io.vertx.proton.impl.ProtonConnectionImpl
            invokevirtual io.vertx.proton.impl.ProtonConnectionImpl.getLocalState:()Lorg/apache/qpid/proton/engine/EndpointState;
            getstatic org.apache.qpid.proton.engine.EndpointState.ACTIVE:Lorg/apache/qpid/proton/engine/EndpointState;
            if_acmpne 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 1 // io.vertx.proton.ProtonConnection connection
        end local 0 // io.vertx.amqpbridge.impl.AmqpBridgeImpl this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    2     0        this  Lio/vertx/amqpbridge/impl/AmqpBridgeImpl;
            0    2     1  connection  Lio/vertx/proton/ProtonConnection;
    MethodParameters:
            Name  Flags
      connection  

  private boolean isRemoteOpen(io.vertx.proton.ProtonConnection);
    descriptor: (Lio/vertx/proton/ProtonConnection;)Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.amqpbridge.impl.AmqpBridgeImpl this
        start local 1 // io.vertx.proton.ProtonConnection connection
         0: .line 242
            aload 1 /* connection */
            checkcast io.vertx.proton.impl.ProtonConnectionImpl
            invokevirtual io.vertx.proton.impl.ProtonConnectionImpl.getRemoteState:()Lorg/apache/qpid/proton/engine/EndpointState;
            getstatic org.apache.qpid.proton.engine.EndpointState.ACTIVE:Lorg/apache/qpid/proton/engine/EndpointState;
            if_acmpne 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 1 // io.vertx.proton.ProtonConnection connection
        end local 0 // io.vertx.amqpbridge.impl.AmqpBridgeImpl this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    2     0        this  Lio/vertx/amqpbridge/impl/AmqpBridgeImpl;
            0    2     1  connection  Lio/vertx/proton/ProtonConnection;
    MethodParameters:
            Name  Flags
      connection  

  public void endHandler(io.vertx.core.Handler<java.lang.Void>);
    descriptor: (Lio/vertx/core/Handler;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.amqpbridge.impl.AmqpBridgeImpl this
        start local 1 // io.vertx.core.Handler endHandler
         0: .line 247
            aload 0 /* this */
            aload 1 /* endHandler */
            putfield io.vertx.amqpbridge.impl.AmqpBridgeImpl.endHandler:Lio/vertx/core/Handler;
         1: .line 248
            return
        end local 1 // io.vertx.core.Handler endHandler
        end local 0 // io.vertx.amqpbridge.impl.AmqpBridgeImpl this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    2     0        this  Lio/vertx/amqpbridge/impl/AmqpBridgeImpl;
            0    2     1  endHandler  Lio/vertx/core/Handler<Ljava/lang/Void;>;
    Signature: (Lio/vertx/core/Handler<Ljava/lang/Void;>;)V
    MethodParameters:
            Name  Flags
      endHandler  

  <R> void registerReplyToHandler(org.apache.qpid.proton.message.Message, io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.core.eventbus.Message<R>>>);
    descriptor: (Lorg/apache/qpid/proton/message/Message;Lio/vertx/core/Handler;)V
    flags: (0x0000) 
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // io.vertx.amqpbridge.impl.AmqpBridgeImpl this
        start local 1 // org.apache.qpid.proton.message.Message msg
        start local 2 // io.vertx.core.Handler replyHandler
         0: .line 252
            aload 0 /* this */
            invokevirtual io.vertx.amqpbridge.impl.AmqpBridgeImpl.verifyReplyToAddressAvailable:()V
         1: .line 253
            aload 1 /* msg */
            aload 0 /* this */
            getfield io.vertx.amqpbridge.impl.AmqpBridgeImpl.replyToConsumerAddress:Ljava/lang/String;
            invokeinterface org.apache.qpid.proton.message.Message.setReplyTo:(Ljava/lang/String;)V
         2: .line 255
            invokestatic java.util.UUID.randomUUID:()Ljava/util/UUID;
            invokevirtual java.util.UUID.toString:()Ljava/lang/String;
            astore 3 /* generatedMessageId */
        start local 3 // java.lang.String generatedMessageId
         3: .line 256
            aload 1 /* msg */
            aload 3 /* generatedMessageId */
            invokeinterface org.apache.qpid.proton.message.Message.setMessageId:(Ljava/lang/Object;)V
         4: .line 258
            aload 0 /* this */
            getfield io.vertx.amqpbridge.impl.AmqpBridgeImpl.replyToMapping:Ljava/util/Map;
            aload 3 /* generatedMessageId */
            aload 2 /* replyHandler */
            invokeinterface java.util.Map.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
         5: .line 259
            return
        end local 3 // java.lang.String generatedMessageId
        end local 2 // io.vertx.core.Handler replyHandler
        end local 1 // org.apache.qpid.proton.message.Message msg
        end local 0 // io.vertx.amqpbridge.impl.AmqpBridgeImpl this
      LocalVariableTable:
        Start  End  Slot                Name  Signature
            0    6     0                this  Lio/vertx/amqpbridge/impl/AmqpBridgeImpl;
            0    6     1                 msg  Lorg/apache/qpid/proton/message/Message;
            0    6     2        replyHandler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/core/eventbus/Message<TR;>;>;>;
            3    6     3  generatedMessageId  Ljava/lang/String;
    Signature: <R:Ljava/lang/Object;>(Lorg/apache/qpid/proton/message/Message;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/core/eventbus/Message<TR;>;>;>;)V
    MethodParameters:
              Name  Flags
      msg           
      replyHandler  

  void verifyReplyToAddressAvailable();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // io.vertx.amqpbridge.impl.AmqpBridgeImpl this
         0: .line 262
            aload 0 /* this */
            getfield io.vertx.amqpbridge.impl.AmqpBridgeImpl.replyToConsumerAddress:Ljava/lang/String;
            ifnonnull 4
         1: .line 263
            new java.lang.IllegalStateException
            dup
         2: .line 264
            ldc "No reply-to address available, unable to send with a reply handler. Try an explicit consumer for replies."
         3: .line 263
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 266
      StackMap locals:
      StackMap stack:
            return
        end local 0 // io.vertx.amqpbridge.impl.AmqpBridgeImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lio/vertx/amqpbridge/impl/AmqpBridgeImpl;
    Exceptions:
      throws java.lang.IllegalStateException

  private void handleIncomingMessageReply(io.vertx.proton.ProtonDelivery, org.apache.qpid.proton.message.Message);
    descriptor: (Lio/vertx/proton/ProtonDelivery;Lorg/apache/qpid/proton/message/Message;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=8, locals=9, args_size=3
        start local 0 // io.vertx.amqpbridge.impl.AmqpBridgeImpl this
        start local 1 // io.vertx.proton.ProtonDelivery delivery
        start local 2 // org.apache.qpid.proton.message.Message protonMessage
         0: .line 270
            aload 2 /* protonMessage */
            invokeinterface org.apache.qpid.proton.message.Message.getCorrelationId:()Ljava/lang/Object;
            astore 3 /* correlationId */
        start local 3 // java.lang.Object correlationId
         1: .line 271
            aload 3 /* correlationId */
            ifnull 12
         2: .line 273
            aload 0 /* this */
            getfield io.vertx.amqpbridge.impl.AmqpBridgeImpl.replyToMapping:Ljava/util/Map;
            aload 3 /* correlationId */
            invokeinterface java.util.Map.remove:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast io.vertx.core.Handler
            astore 4 /* handler */
        start local 4 // io.vertx.core.Handler handler
         3: .line 275
            aload 4 /* handler */
            ifnull 12
         4: .line 277
            aload 4 /* handler */
            astore 5 /* h */
        start local 5 // io.vertx.core.Handler h
         5: .line 279
            aload 0 /* this */
            getfield io.vertx.amqpbridge.impl.AmqpBridgeImpl.translator:Lio/vertx/amqpbridge/impl/MessageTranslatorImpl;
            aload 2 /* protonMessage */
            invokevirtual io.vertx.amqpbridge.impl.MessageTranslatorImpl.convertToJsonObject:(Lorg/apache/qpid/proton/message/Message;)Lio/vertx/core/json/JsonObject;
            astore 6 /* body */
        start local 6 // io.vertx.core.json.JsonObject body
         6: .line 280
            new io.vertx.amqpbridge.impl.AmqpMessageImpl
            dup
            aload 6 /* body */
            aload 0 /* this */
            aload 2 /* protonMessage */
            aload 1 /* delivery */
         7: .line 281
            aload 0 /* this */
            getfield io.vertx.amqpbridge.impl.AmqpBridgeImpl.replyToConsumerAddress:Ljava/lang/String;
            aload 2 /* protonMessage */
            invokeinterface org.apache.qpid.proton.message.Message.getReplyTo:()Ljava/lang/String;
         8: .line 280
            invokespecial io.vertx.amqpbridge.impl.AmqpMessageImpl.<init>:(Lio/vertx/core/json/JsonObject;Lio/vertx/amqpbridge/impl/AmqpBridgeImpl;Lorg/apache/qpid/proton/message/Message;Lio/vertx/proton/ProtonDelivery;Ljava/lang/String;Ljava/lang/String;)V
            astore 7 /* msg */
        start local 7 // io.vertx.core.eventbus.Message msg
         9: .line 283
            aload 7 /* msg */
            invokestatic io.vertx.core.Future.succeededFuture:(Ljava/lang/Object;)Lio/vertx/core/Future;
            astore 8 /* result */
        start local 8 // io.vertx.core.AsyncResult result
        10: .line 284
            aload 5 /* h */
            aload 8 /* result */
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
        11: .line 285
            return
        end local 8 // io.vertx.core.AsyncResult result
        end local 7 // io.vertx.core.eventbus.Message msg
        end local 6 // io.vertx.core.json.JsonObject body
        end local 5 // io.vertx.core.Handler h
        end local 4 // io.vertx.core.Handler handler
        12: .line 289
      StackMap locals: java.lang.Object
      StackMap stack:
            getstatic io.vertx.amqpbridge.impl.AmqpBridgeImpl.LOG:Lio/vertx/core/logging/Logger;
            new java.lang.StringBuilder
            dup
            ldc "Received message on replyTo consumer, could not match to a replyHandler: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 2 /* protonMessage */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokevirtual io.vertx.core.logging.Logger.error:(Ljava/lang/Object;)V
        13: .line 290
            return
        end local 3 // java.lang.Object correlationId
        end local 2 // org.apache.qpid.proton.message.Message protonMessage
        end local 1 // io.vertx.proton.ProtonDelivery delivery
        end local 0 // io.vertx.amqpbridge.impl.AmqpBridgeImpl this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   14     0           this  Lio/vertx/amqpbridge/impl/AmqpBridgeImpl;
            0   14     1       delivery  Lio/vertx/proton/ProtonDelivery;
            0   14     2  protonMessage  Lorg/apache/qpid/proton/message/Message;
            1   14     3  correlationId  Ljava/lang/Object;
            3   12     4        handler  Lio/vertx/core/Handler<*>;
            5   12     5              h  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/core/eventbus/Message<Lio/vertx/core/json/JsonObject;>;>;>;
            6   12     6           body  Lio/vertx/core/json/JsonObject;
            9   12     7            msg  Lio/vertx/core/eventbus/Message<Lio/vertx/core/json/JsonObject;>;
           10   12     8         result  Lio/vertx/core/AsyncResult<Lio/vertx/core/eventbus/Message<Lio/vertx/core/json/JsonObject;>;>;
    MethodParameters:
               Name  Flags
      delivery       
      protonMessage  

  <R> void sendReply(org.apache.qpid.proton.message.Message, io.vertx.core.json.JsonObject, io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.core.eventbus.Message<R>>>);
    descriptor: (Lorg/apache/qpid/proton/message/Message;Lio/vertx/core/json/JsonObject;Lio/vertx/core/Handler;)V
    flags: (0x0000) 
    Code:
      stack=5, locals=7, args_size=4
        start local 0 // io.vertx.amqpbridge.impl.AmqpBridgeImpl this
        start local 1 // org.apache.qpid.proton.message.Message origIncomingMessage
        start local 2 // io.vertx.core.json.JsonObject replyBody
        start local 3 // io.vertx.core.Handler replyHandler
         0: .line 294
            aload 0 /* this */
            getfield io.vertx.amqpbridge.impl.AmqpBridgeImpl.replySender:Lio/vertx/amqpbridge/impl/AmqpProducerImpl;
            ifnonnull 4
         1: .line 295
            new java.lang.IllegalStateException
            dup
         2: .line 296
            ldc "No reply sender available, unable to send implicit replies. Try an explicit producer for replies."
         3: .line 295
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 299
      StackMap locals:
      StackMap stack:
            aload 1 /* origIncomingMessage */
            invokeinterface org.apache.qpid.proton.message.Message.getReplyTo:()Ljava/lang/String;
            astore 4 /* replyAddress */
        start local 4 // java.lang.String replyAddress
         5: .line 300
            aload 4 /* replyAddress */
            ifnonnull 7
         6: .line 301
            new java.lang.IllegalStateException
            dup
            ldc "Original message has no reply-to address, unable to send implicit reply"
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         7: .line 306
      StackMap locals: java.lang.String
      StackMap stack:
            aload 1 /* origIncomingMessage */
            invokeinterface org.apache.qpid.proton.message.Message.getMessageId:()Ljava/lang/Object;
            astore 5 /* origMessageId */
        start local 5 // java.lang.Object origMessageId
         8: .line 307
            aload 5 /* origMessageId */
            ifnull 14
         9: .line 308
            aload 2 /* replyBody */
            ldc "properties"
            invokevirtual io.vertx.core.json.JsonObject.getJsonObject:(Ljava/lang/String;)Lio/vertx/core/json/JsonObject;
            astore 6 /* replyBodyProps */
        start local 6 // io.vertx.core.json.JsonObject replyBodyProps
        10: .line 309
            aload 6 /* replyBodyProps */
            ifnonnull 13
        11: .line 310
            new io.vertx.core.json.JsonObject
            dup
            invokespecial io.vertx.core.json.JsonObject.<init>:()V
            astore 6 /* replyBodyProps */
        12: .line 311
            aload 2 /* replyBody */
            ldc "properties"
            aload 6 /* replyBodyProps */
            invokevirtual io.vertx.core.json.JsonObject.put:(Ljava/lang/String;Lio/vertx/core/json/JsonObject;)Lio/vertx/core/json/JsonObject;
            pop
        13: .line 314
      StackMap locals: java.lang.Object io.vertx.core.json.JsonObject
      StackMap stack:
            aload 6 /* replyBodyProps */
            ldc "correlation_id"
            aload 5 /* origMessageId */
            invokevirtual io.vertx.core.json.JsonObject.put:(Ljava/lang/String;Ljava/lang/Object;)Lio/vertx/core/json/JsonObject;
            pop
        end local 6 // io.vertx.core.json.JsonObject replyBodyProps
        14: .line 317
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.amqpbridge.impl.AmqpBridgeImpl.replySender:Lio/vertx/amqpbridge/impl/AmqpProducerImpl;
            aload 2 /* replyBody */
            aconst_null
            aload 3 /* replyHandler */
            aload 4 /* replyAddress */
            invokevirtual io.vertx.amqpbridge.impl.AmqpProducerImpl.doSend:(Lio/vertx/core/json/JsonObject;Lio/vertx/core/Handler;Lio/vertx/core/Handler;Ljava/lang/String;)Lio/vertx/core/eventbus/MessageProducer;
            pop
        15: .line 318
            return
        end local 5 // java.lang.Object origMessageId
        end local 4 // java.lang.String replyAddress
        end local 3 // io.vertx.core.Handler replyHandler
        end local 2 // io.vertx.core.json.JsonObject replyBody
        end local 1 // org.apache.qpid.proton.message.Message origIncomingMessage
        end local 0 // io.vertx.amqpbridge.impl.AmqpBridgeImpl this
      LocalVariableTable:
        Start  End  Slot                 Name  Signature
            0   16     0                 this  Lio/vertx/amqpbridge/impl/AmqpBridgeImpl;
            0   16     1  origIncomingMessage  Lorg/apache/qpid/proton/message/Message;
            0   16     2            replyBody  Lio/vertx/core/json/JsonObject;
            0   16     3         replyHandler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/core/eventbus/Message<TR;>;>;>;
            5   16     4         replyAddress  Ljava/lang/String;
            8   16     5        origMessageId  Ljava/lang/Object;
           10   14     6       replyBodyProps  Lio/vertx/core/json/JsonObject;
    Signature: <R:Ljava/lang/Object;>(Lorg/apache/qpid/proton/message/Message;Lio/vertx/core/json/JsonObject;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/core/eventbus/Message<TR;>;>;>;)V
    MethodParameters:
                     Name  Flags
      origIncomingMessage  
      replyBody            
      replyHandler         

  boolean onContextEventLoop();
    descriptor: ()Z
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.amqpbridge.impl.AmqpBridgeImpl this
         0: .line 321
            aload 0 /* this */
            getfield io.vertx.amqpbridge.impl.AmqpBridgeImpl.bridgeContext:Lio/vertx/core/Context;
            checkcast io.vertx.core.impl.ContextInternal
            invokeinterface io.vertx.core.impl.ContextInternal.nettyEventLoop:()Lio/netty/channel/EventLoop;
            invokeinterface io.netty.channel.EventLoop.inEventLoop:()Z
            ireturn
        end local 0 // io.vertx.amqpbridge.impl.AmqpBridgeImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/amqpbridge/impl/AmqpBridgeImpl;

  void runOnContext(boolean, io.vertx.core.Handler<java.lang.Void>);
    descriptor: (ZLio/vertx/core/Handler;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // io.vertx.amqpbridge.impl.AmqpBridgeImpl this
        start local 1 // boolean immediateIfOnContext
        start local 2 // io.vertx.core.Handler action
         0: .line 325
            iload 1 /* immediateIfOnContext */
            ifeq 3
            aload 0 /* this */
            invokevirtual io.vertx.amqpbridge.impl.AmqpBridgeImpl.onContextEventLoop:()Z
            ifeq 3
         1: .line 326
            aload 2 /* action */
            aconst_null
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
         2: .line 327
            goto 4
         3: .line 328
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.amqpbridge.impl.AmqpBridgeImpl.bridgeContext:Lio/vertx/core/Context;
            aload 2 /* action */
            invokeinterface io.vertx.core.Context.runOnContext:(Lio/vertx/core/Handler;)V
         4: .line 330
      StackMap locals:
      StackMap stack:
            return
        end local 2 // io.vertx.core.Handler action
        end local 1 // boolean immediateIfOnContext
        end local 0 // io.vertx.amqpbridge.impl.AmqpBridgeImpl this
      LocalVariableTable:
        Start  End  Slot                  Name  Signature
            0    5     0                  this  Lio/vertx/amqpbridge/impl/AmqpBridgeImpl;
            0    5     1  immediateIfOnContext  Z
            0    5     2                action  Lio/vertx/core/Handler<Ljava/lang/Void;>;
    Signature: (ZLio/vertx/core/Handler<Ljava/lang/Void;>;)V
    MethodParameters:
                      Name  Flags
      immediateIfOnContext  
      action                

  private void lambda$0(java.lang.String, int, java.lang.String, java.lang.String, io.vertx.core.Handler, java.lang.Void);
    descriptor: (Ljava/lang/String;ILjava/lang/String;Ljava/lang/String;Lio/vertx/core/Handler;Ljava/lang/Void;)V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=6, locals=7, args_size=7
        start local 0 // io.vertx.amqpbridge.impl.AmqpBridgeImpl this
        start local 6 // java.lang.Void v
         0: .line 82
            aload 0 /* this */
            aload 1
            iload 2
            aload 3
            aload 4
            aload 5
            invokevirtual io.vertx.amqpbridge.impl.AmqpBridgeImpl.startImpl:(Ljava/lang/String;ILjava/lang/String;Ljava/lang/String;Lio/vertx/core/Handler;)V
         1: .line 83
            return
        end local 6 // java.lang.Void v
        end local 0 // io.vertx.amqpbridge.impl.AmqpBridgeImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/amqpbridge/impl/AmqpBridgeImpl;
            0    2     6     v  Ljava/lang/Void;

  private void lambda$1(io.vertx.core.Handler, io.vertx.core.AsyncResult);
    descriptor: (Lio/vertx/core/Handler;Lio/vertx/core/AsyncResult;)V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // io.vertx.amqpbridge.impl.AmqpBridgeImpl this
        start local 2 // io.vertx.core.AsyncResult connectResult
         0: .line 91
            aload 2 /* connectResult */
            invokeinterface io.vertx.core.AsyncResult.succeeded:()Z
            ifeq 16
         1: .line 92
            aload 0 /* this */
            aload 2 /* connectResult */
            invokeinterface io.vertx.core.AsyncResult.result:()Ljava/lang/Object;
            checkcast io.vertx.proton.ProtonConnection
            putfield io.vertx.amqpbridge.impl.AmqpBridgeImpl.connection:Lio/vertx/proton/ProtonConnection;
         2: .line 94
            new java.util.LinkedHashMap
            dup
            invokespecial java.util.LinkedHashMap.<init>:()V
            astore 3 /* props */
        start local 3 // java.util.LinkedHashMap props
         3: .line 95
            aload 3 /* props */
            getstatic io.vertx.amqpbridge.impl.BridgeMetaDataSupportImpl.PRODUCT_KEY:Lorg/apache/qpid/proton/amqp/Symbol;
            ldc "vertx-amqp-bridge"
            invokevirtual java.util.LinkedHashMap.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
         4: .line 96
            aload 3 /* props */
            getstatic io.vertx.amqpbridge.impl.BridgeMetaDataSupportImpl.VERSION_KEY:Lorg/apache/qpid/proton/amqp/Symbol;
            getstatic io.vertx.amqpbridge.impl.BridgeMetaDataSupportImpl.VERSION:Ljava/lang/String;
            invokevirtual java.util.LinkedHashMap.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
         5: .line 97
            aload 0 /* this */
            getfield io.vertx.amqpbridge.impl.AmqpBridgeImpl.connection:Lio/vertx/proton/ProtonConnection;
            aload 3 /* props */
            invokeinterface io.vertx.proton.ProtonConnection.setProperties:(Ljava/util/Map;)Lio/vertx/proton/ProtonConnection;
            pop
         6: .line 99
            aload 0 /* this */
            getfield io.vertx.amqpbridge.impl.AmqpBridgeImpl.options:Lio/vertx/amqpbridge/AmqpBridgeOptions;
            invokevirtual io.vertx.amqpbridge.AmqpBridgeOptions.getVhost:()Ljava/lang/String;
            ifnull 8
         7: .line 100
            aload 0 /* this */
            getfield io.vertx.amqpbridge.impl.AmqpBridgeImpl.connection:Lio/vertx/proton/ProtonConnection;
            aload 0 /* this */
            getfield io.vertx.amqpbridge.impl.AmqpBridgeImpl.options:Lio/vertx/amqpbridge/AmqpBridgeOptions;
            invokevirtual io.vertx.amqpbridge.AmqpBridgeOptions.getVhost:()Ljava/lang/String;
            invokeinterface io.vertx.proton.ProtonConnection.setHostname:(Ljava/lang/String;)Lio/vertx/proton/ProtonConnection;
            pop
         8: .line 103
      StackMap locals: java.util.LinkedHashMap
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.amqpbridge.impl.AmqpBridgeImpl.options:Lio/vertx/amqpbridge/AmqpBridgeOptions;
            invokevirtual io.vertx.amqpbridge.AmqpBridgeOptions.getContainerId:()Ljava/lang/String;
            ifnull 10
         9: .line 104
            aload 0 /* this */
            getfield io.vertx.amqpbridge.impl.AmqpBridgeImpl.connection:Lio/vertx/proton/ProtonConnection;
            aload 0 /* this */
            getfield io.vertx.amqpbridge.impl.AmqpBridgeImpl.options:Lio/vertx/amqpbridge/AmqpBridgeOptions;
            invokevirtual io.vertx.amqpbridge.AmqpBridgeOptions.getContainerId:()Ljava/lang/String;
            invokeinterface io.vertx.proton.ProtonConnection.setContainer:(Ljava/lang/String;)Lio/vertx/proton/ProtonConnection;
            pop
        10: .line 107
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.amqpbridge.impl.AmqpBridgeImpl.connection:Lio/vertx/proton/ProtonConnection;
            aload 0 /* this */
            invokedynamic handle(Lio/vertx/amqpbridge/impl/AmqpBridgeImpl;)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/amqpbridge/impl/AmqpBridgeImpl.lambda$2(Lio/vertx/proton/ProtonConnection;)V (7)
                  (Lio/vertx/proton/ProtonConnection;)V
            invokeinterface io.vertx.proton.ProtonConnection.disconnectHandler:(Lio/vertx/core/Handler;)Lio/vertx/proton/ProtonConnection;
            pop
        11: .line 111
            aload 0 /* this */
            getfield io.vertx.amqpbridge.impl.AmqpBridgeImpl.connection:Lio/vertx/proton/ProtonConnection;
            aload 0 /* this */
            invokedynamic handle(Lio/vertx/amqpbridge/impl/AmqpBridgeImpl;)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/amqpbridge/impl/AmqpBridgeImpl.lambda$3(Lio/vertx/core/AsyncResult;)V (7)
                  (Lio/vertx/core/AsyncResult;)V
            invokeinterface io.vertx.proton.ProtonConnection.closeHandler:(Lio/vertx/core/Handler;)Lio/vertx/proton/ProtonConnection;
            pop
        12: .line 119
            aload 0 /* this */
            getfield io.vertx.amqpbridge.impl.AmqpBridgeImpl.connection:Lio/vertx/proton/ProtonConnection;
            aload 0 /* this */
            aload 1
            invokedynamic handle(Lio/vertx/amqpbridge/impl/AmqpBridgeImpl;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/amqpbridge/impl/AmqpBridgeImpl.lambda$4(Lio/vertx/core/Handler;Lio/vertx/core/AsyncResult;)V (7)
                  (Lio/vertx/core/AsyncResult;)V
            invokeinterface io.vertx.proton.ProtonConnection.openHandler:(Lio/vertx/core/Handler;)Lio/vertx/proton/ProtonConnection;
        13: .line 154
            invokeinterface io.vertx.proton.ProtonConnection.open:()Lio/vertx/proton/ProtonConnection;
            pop
        14: .line 155
            aload 0 /* this */
            getfield io.vertx.amqpbridge.impl.AmqpBridgeImpl.connection:Lio/vertx/proton/ProtonConnection;
            invokeinterface io.vertx.proton.ProtonConnection.open:()Lio/vertx/proton/ProtonConnection;
            pop
        end local 3 // java.util.LinkedHashMap props
        15: .line 156
            goto 17
        16: .line 157
      StackMap locals:
      StackMap stack:
            aload 1
            aload 2 /* connectResult */
            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
        17: .line 159
      StackMap locals:
      StackMap stack:
            return
        end local 2 // io.vertx.core.AsyncResult connectResult
        end local 0 // io.vertx.amqpbridge.impl.AmqpBridgeImpl this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   18     0           this  Lio/vertx/amqpbridge/impl/AmqpBridgeImpl;
            0   18     2  connectResult  Lio/vertx/core/AsyncResult<Lio/vertx/proton/ProtonConnection;>;
            3   15     3          props  Ljava/util/LinkedHashMap<Lorg/apache/qpid/proton/amqp/Symbol;Ljava/lang/Object;>;

  private void lambda$7(io.vertx.core.Handler, java.lang.Void);
    descriptor: (Lio/vertx/core/Handler;Ljava/lang/Void;)V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // io.vertx.amqpbridge.impl.AmqpBridgeImpl this
        start local 2 // java.lang.Void v
         0: .line 194
            aload 0 /* this */
            aload 1
            invokevirtual io.vertx.amqpbridge.impl.AmqpBridgeImpl.shutdownImpl:(Lio/vertx/core/Handler;)V
         1: .line 195
            return
        end local 2 // java.lang.Void v
        end local 0 // io.vertx.amqpbridge.impl.AmqpBridgeImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/amqpbridge/impl/AmqpBridgeImpl;
            0    2     2     v  Ljava/lang/Void;

  private void lambda$8(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=2, locals=4, args_size=3
        start local 0 // io.vertx.amqpbridge.impl.AmqpBridgeImpl this
        start local 2 // io.vertx.core.AsyncResult res
         0: .line 203
            aload 0 /* this */
            invokevirtual io.vertx.amqpbridge.impl.AmqpBridgeImpl.disconnectImpl:()V
         1: .line 204
            goto 8
      StackMap locals:
      StackMap stack: java.lang.Throwable
         2: astore 3
         3: .line 205
            aload 2 /* res */
            invokeinterface io.vertx.core.AsyncResult.succeeded:()Z
            ifeq 6
         4: .line 206
            aload 1
            invokestatic io.vertx.core.Future.succeededFuture:()Lio/vertx/core/Future;
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
         5: .line 207
            goto 7
         6: .line 208
      StackMap locals: java.lang.Throwable
      StackMap stack:
            aload 1
            aload 2 /* res */
            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
         7: .line 210
      StackMap locals:
      StackMap stack:
            aload 3
            athrow
         8: .line 205
      StackMap locals:
      StackMap stack:
            aload 2 /* res */
            invokeinterface io.vertx.core.AsyncResult.succeeded:()Z
            ifeq 11
         9: .line 206
            aload 1
            invokestatic io.vertx.core.Future.succeededFuture:()Lio/vertx/core/Future;
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
        10: .line 207
            goto 12
        11: .line 208
      StackMap locals:
      StackMap stack:
            aload 1
            aload 2 /* res */
            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
        12: .line 211
      StackMap locals:
      StackMap stack:
            return
        end local 2 // io.vertx.core.AsyncResult res
        end local 0 // io.vertx.amqpbridge.impl.AmqpBridgeImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   13     0  this  Lio/vertx/amqpbridge/impl/AmqpBridgeImpl;
            0   13     2   res  Lio/vertx/core/AsyncResult<Lio/vertx/proton/ProtonConnection;>;
      Exception table:
        from    to  target  type
           0     2       2  any

  private void lambda$2(io.vertx.proton.ProtonConnection);
    descriptor: (Lio/vertx/proton/ProtonConnection;)V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // io.vertx.amqpbridge.impl.AmqpBridgeImpl this
        start local 1 // io.vertx.proton.ProtonConnection closeResult
         0: .line 108
            aload 0 /* this */
            invokevirtual io.vertx.amqpbridge.impl.AmqpBridgeImpl.endHandlerImpl:()V
         1: .line 109
            return
        end local 1 // io.vertx.proton.ProtonConnection closeResult
        end local 0 // io.vertx.amqpbridge.impl.AmqpBridgeImpl this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    2     0         this  Lio/vertx/amqpbridge/impl/AmqpBridgeImpl;
            0    2     1  closeResult  Lio/vertx/proton/ProtonConnection;

  private void lambda$3(io.vertx.core.AsyncResult);
    descriptor: (Lio/vertx/core/AsyncResult;)V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=1, locals=3, args_size=2
        start local 0 // io.vertx.amqpbridge.impl.AmqpBridgeImpl this
        start local 1 // io.vertx.core.AsyncResult closeResult
         0: .line 113
            aload 0 /* this */
            invokevirtual io.vertx.amqpbridge.impl.AmqpBridgeImpl.disconnectImpl:()V
         1: .line 114
            goto 5
      StackMap locals:
      StackMap stack: java.lang.Throwable
         2: astore 2
         3: .line 115
            aload 0 /* this */
            invokevirtual io.vertx.amqpbridge.impl.AmqpBridgeImpl.endHandlerImpl:()V
         4: .line 116
            aload 2
            athrow
         5: .line 115
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual io.vertx.amqpbridge.impl.AmqpBridgeImpl.endHandlerImpl:()V
         6: .line 117
            return
        end local 1 // io.vertx.core.AsyncResult closeResult
        end local 0 // io.vertx.amqpbridge.impl.AmqpBridgeImpl this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    7     0         this  Lio/vertx/amqpbridge/impl/AmqpBridgeImpl;
            0    7     1  closeResult  Lio/vertx/core/AsyncResult<Lio/vertx/proton/ProtonConnection;>;
      Exception table:
        from    to  target  type
           0     2       2  any

  private void lambda$4(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=6, locals=4, args_size=3
        start local 0 // io.vertx.amqpbridge.impl.AmqpBridgeImpl this
        start local 2 // io.vertx.core.AsyncResult openResult
         0: .line 120
            getstatic io.vertx.amqpbridge.impl.AmqpBridgeImpl.LOG:Lio/vertx/core/logging/Logger;
            ldc "Bridge connection open complete"
            invokevirtual io.vertx.core.logging.Logger.trace:(Ljava/lang/Object;)V
         1: .line 121
            aload 2 /* openResult */
            invokeinterface io.vertx.core.AsyncResult.succeeded:()Z
            ifeq 14
         2: .line 122
            aload 0 /* this */
            getfield io.vertx.amqpbridge.impl.AmqpBridgeImpl.options:Lio/vertx/amqpbridge/AmqpBridgeOptions;
            invokevirtual io.vertx.amqpbridge.AmqpBridgeOptions.isReplyHandlingSupport:()Z
            ifeq 3
            aload 0 /* this */
            getfield io.vertx.amqpbridge.impl.AmqpBridgeImpl.connection:Lio/vertx/proton/ProtonConnection;
            invokeinterface io.vertx.proton.ProtonConnection.isAnonymousRelaySupported:()Z
            ifne 6
         3: .line 123
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.amqpbridge.impl.AmqpBridgeImpl.started:Ljava/util/concurrent/atomic/AtomicBoolean;
            iconst_1
            invokevirtual java.util.concurrent.atomic.AtomicBoolean.set:(Z)V
         4: .line 124
            aload 1
            aload 0 /* this */
            invokestatic io.vertx.core.Future.succeededFuture:(Ljava/lang/Object;)Lio/vertx/core/Future;
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
         5: .line 125
            return
         6: .line 129
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            new io.vertx.amqpbridge.impl.AmqpProducerImpl
            dup
            aload 0 /* this */
            aload 0 /* this */
            getfield io.vertx.amqpbridge.impl.AmqpBridgeImpl.connection:Lio/vertx/proton/ProtonConnection;
            aconst_null
            invokespecial io.vertx.amqpbridge.impl.AmqpProducerImpl.<init>:(Lio/vertx/amqpbridge/impl/AmqpBridgeImpl;Lio/vertx/proton/ProtonConnection;Ljava/lang/String;)V
            putfield io.vertx.amqpbridge.impl.AmqpBridgeImpl.replySender:Lio/vertx/amqpbridge/impl/AmqpProducerImpl;
         7: .line 133
            aload 0 /* this */
            aload 0 /* this */
            getfield io.vertx.amqpbridge.impl.AmqpBridgeImpl.connection:Lio/vertx/proton/ProtonConnection;
            aconst_null
            invokeinterface io.vertx.proton.ProtonConnection.createReceiver:(Ljava/lang/String;)Lio/vertx/proton/ProtonReceiver;
            putfield io.vertx.amqpbridge.impl.AmqpBridgeImpl.replyToConsumer:Lio/vertx/proton/ProtonReceiver;
         8: .line 134
            aload 0 /* this */
            getfield io.vertx.amqpbridge.impl.AmqpBridgeImpl.replyToConsumer:Lio/vertx/proton/ProtonReceiver;
            invokeinterface io.vertx.proton.ProtonReceiver.getSource:()Lorg/apache/qpid/proton/amqp/transport/Source;
            checkcast org.apache.qpid.proton.amqp.messaging.Source
            astore 3 /* source */
        start local 3 // org.apache.qpid.proton.amqp.messaging.Source source
         9: .line 135
            aload 3 /* source */
            iconst_1
            invokevirtual org.apache.qpid.proton.amqp.messaging.Source.setDynamic:(Z)V
        10: .line 137
            aload 0 /* this */
            getfield io.vertx.amqpbridge.impl.AmqpBridgeImpl.replyToConsumer:Lio/vertx/proton/ProtonReceiver;
            aload 0 /* this */
            invokedynamic handle(Lio/vertx/amqpbridge/impl/AmqpBridgeImpl;)Lio/vertx/proton/ProtonMessageHandler;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Lio/vertx/proton/ProtonDelivery;Lorg/apache/qpid/proton/message/Message;)V
                  io/vertx/amqpbridge/impl/AmqpBridgeImpl.handleIncomingMessageReply(Lio/vertx/proton/ProtonDelivery;Lorg/apache/qpid/proton/message/Message;)V (7)
                  (Lio/vertx/proton/ProtonDelivery;Lorg/apache/qpid/proton/message/Message;)V
            invokeinterface io.vertx.proton.ProtonReceiver.handler:(Lio/vertx/proton/ProtonMessageHandler;)Lio/vertx/proton/ProtonReceiver;
            pop
        11: .line 138
            aload 0 /* this */
            getfield io.vertx.amqpbridge.impl.AmqpBridgeImpl.replyToConsumer:Lio/vertx/proton/ProtonReceiver;
            aload 0 /* this */
            aload 1
            invokedynamic handle(Lio/vertx/amqpbridge/impl/AmqpBridgeImpl;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/amqpbridge/impl/AmqpBridgeImpl.lambda$6(Lio/vertx/core/Handler;Lio/vertx/core/AsyncResult;)V (7)
                  (Lio/vertx/core/AsyncResult;)V
            invokeinterface io.vertx.proton.ProtonReceiver.openHandler:(Lio/vertx/core/Handler;)Lio/vertx/proton/ProtonLink;
            checkcast io.vertx.proton.ProtonReceiver
        12: .line 150
            invokeinterface io.vertx.proton.ProtonReceiver.open:()Lio/vertx/proton/ProtonLink;
            pop
        end local 3 // org.apache.qpid.proton.amqp.messaging.Source source
        13: .line 151
            goto 15
        14: .line 152
      StackMap locals:
      StackMap stack:
            aload 1
            aload 2 /* openResult */
            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
        15: .line 154
      StackMap locals:
      StackMap stack:
            return
        end local 2 // io.vertx.core.AsyncResult openResult
        end local 0 // io.vertx.amqpbridge.impl.AmqpBridgeImpl this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   16     0        this  Lio/vertx/amqpbridge/impl/AmqpBridgeImpl;
            0   16     2  openResult  Lio/vertx/core/AsyncResult<Lio/vertx/proton/ProtonConnection;>;
            9   13     3      source  Lorg/apache/qpid/proton/amqp/messaging/Source;

  private void lambda$6(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=2, locals=4, args_size=3
        start local 0 // io.vertx.amqpbridge.impl.AmqpBridgeImpl this
        start local 2 // io.vertx.core.AsyncResult replyToConsumerResult
         0: .line 139
            aload 2 /* replyToConsumerResult */
            invokeinterface io.vertx.core.AsyncResult.succeeded:()Z
            ifeq 7
         1: .line 140
            aload 0 /* this */
            getfield io.vertx.amqpbridge.impl.AmqpBridgeImpl.replyToConsumer:Lio/vertx/proton/ProtonReceiver;
            invokeinterface io.vertx.proton.ProtonReceiver.getRemoteSource:()Lorg/apache/qpid/proton/amqp/transport/Source;
            checkcast org.apache.qpid.proton.amqp.messaging.Source
            astore 3 /* remoteSource */
        start local 3 // org.apache.qpid.proton.amqp.messaging.Source remoteSource
         2: .line 141
            aload 3 /* remoteSource */
            ifnull 4
         3: .line 142
            aload 0 /* this */
            aload 3 /* remoteSource */
            invokevirtual org.apache.qpid.proton.amqp.messaging.Source.getAddress:()Ljava/lang/String;
            putfield io.vertx.amqpbridge.impl.AmqpBridgeImpl.replyToConsumerAddress:Ljava/lang/String;
         4: .line 145
      StackMap locals: org.apache.qpid.proton.amqp.messaging.Source
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.amqpbridge.impl.AmqpBridgeImpl.started:Ljava/util/concurrent/atomic/AtomicBoolean;
            iconst_1
            invokevirtual java.util.concurrent.atomic.AtomicBoolean.set:(Z)V
         5: .line 146
            aload 1
            aload 0 /* this */
            invokestatic io.vertx.core.Future.succeededFuture:(Ljava/lang/Object;)Lio/vertx/core/Future;
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
        end local 3 // org.apache.qpid.proton.amqp.messaging.Source remoteSource
         6: .line 147
            goto 8
         7: .line 148
      StackMap locals:
      StackMap stack:
            aload 1
            aload 2 /* replyToConsumerResult */
            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
         8: .line 150
      StackMap locals:
      StackMap stack:
            return
        end local 2 // io.vertx.core.AsyncResult replyToConsumerResult
        end local 0 // io.vertx.amqpbridge.impl.AmqpBridgeImpl this
      LocalVariableTable:
        Start  End  Slot                   Name  Signature
            0    9     0                   this  Lio/vertx/amqpbridge/impl/AmqpBridgeImpl;
            0    9     2  replyToConsumerResult  Lio/vertx/core/AsyncResult<Lio/vertx/proton/ProtonReceiver;>;
            2    6     3           remoteSource  Lorg/apache/qpid/proton/amqp/messaging/Source;
}
SourceFile: "AmqpBridgeImpl.java"
InnerClasses:
  public final Lookup = java.lang.invoke.MethodHandles$Lookup of java.lang.invoke.MethodHandles