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

  private static final long QUORUM_CHECK_PERIOD;
    descriptor: J
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 1000

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

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

  private final io.vertx.core.spi.cluster.ClusterManager clusterManager;
    descriptor: Lio/vertx/core/spi/cluster/ClusterManager;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final int quorumSize;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final java.lang.String group;
    descriptor: Ljava/lang/String;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

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

  private final java.util.Map<java.lang.String, java.lang.String> clusterMap;
    descriptor: Ljava/util/Map;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/Map<Ljava/lang/String;Ljava/lang/String;>;

  private final java.lang.String nodeID;
    descriptor: Ljava/lang/String;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final java.util.Queue<java.lang.Runnable> toDeployOnQuorum;
    descriptor: Ljava/util/Queue;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/Queue<Ljava/lang/Runnable;>;

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

  private long quorumTimerID;
    descriptor: J
    flags: (0x0002) ACC_PRIVATE

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

  private volatile io.vertx.core.impl.FailoverCompleteHandler failoverCompleteHandler;
    descriptor: Lio/vertx/core/impl/FailoverCompleteHandler;
    flags: (0x0042) ACC_PRIVATE, ACC_VOLATILE

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

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

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

  private java.util.function.Consumer<java.util.Set<java.lang.String>> clusterViewChangedHandler;
    descriptor: Ljava/util/function/Consumer;
    flags: (0x0002) ACC_PRIVATE
    Signature: Ljava/util/function/Consumer<Ljava/util/Set<Ljava/lang/String;>;>;

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

  public void <init>(io.vertx.core.impl.VertxInternal, io.vertx.core.impl.DeploymentManager, io.vertx.core.spi.cluster.ClusterManager, java.util.Map<java.lang.String, java.lang.String>, int, java.lang.String, );
    descriptor: (Lio/vertx/core/impl/VertxInternal;Lio/vertx/core/impl/DeploymentManager;Lio/vertx/core/spi/cluster/ClusterManager;Ljava/util/Map;ILjava/lang/String;Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=8, args_size=8
        start local 0 // io.vertx.core.impl.HAManager this
        start local 1 // io.vertx.core.impl.VertxInternal vertx
        start local 2 // io.vertx.core.impl.DeploymentManager deploymentManager
        start local 3 // io.vertx.core.spi.cluster.ClusterManager clusterManager
        start local 4 // java.util.Map clusterMap
        start local 5 // int quorumSize
        start local 6 // java.lang.String group
        start local 7 // boolean enabled
         0: .line 122
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 111
            aload 0 /* this */
            new java.util.concurrent.ConcurrentLinkedQueue
            dup
            invokespecial java.util.concurrent.ConcurrentLinkedQueue.<init>:()V
            putfield io.vertx.core.impl.HAManager.toDeployOnQuorum:Ljava/util/Queue;
         2: .line 124
            aload 0 /* this */
            aload 1 /* vertx */
            putfield io.vertx.core.impl.HAManager.vertx:Lio/vertx/core/impl/VertxInternal;
         3: .line 125
            aload 0 /* this */
            aload 2 /* deploymentManager */
            putfield io.vertx.core.impl.HAManager.deploymentManager:Lio/vertx/core/impl/DeploymentManager;
         4: .line 126
            aload 0 /* this */
            aload 3 /* clusterManager */
            putfield io.vertx.core.impl.HAManager.clusterManager:Lio/vertx/core/spi/cluster/ClusterManager;
         5: .line 127
            aload 0 /* this */
            aload 4 /* clusterMap */
            putfield io.vertx.core.impl.HAManager.clusterMap:Ljava/util/Map;
         6: .line 128
            aload 0 /* this */
            iload 7 /* enabled */
            ifeq 7
            iload 5 /* quorumSize */
            goto 8
      StackMap locals: io.vertx.core.impl.HAManager io.vertx.core.impl.VertxInternal io.vertx.core.impl.DeploymentManager io.vertx.core.spi.cluster.ClusterManager java.util.Map int java.lang.String int
      StackMap stack: io.vertx.core.impl.HAManager
         7: iconst_0
      StackMap locals: io.vertx.core.impl.HAManager io.vertx.core.impl.VertxInternal io.vertx.core.impl.DeploymentManager io.vertx.core.spi.cluster.ClusterManager java.util.Map int java.lang.String int
      StackMap stack: io.vertx.core.impl.HAManager int
         8: putfield io.vertx.core.impl.HAManager.quorumSize:I
         9: .line 129
            aload 0 /* this */
            iload 7 /* enabled */
            ifeq 10
            aload 6 /* group */
            goto 11
      StackMap locals:
      StackMap stack: io.vertx.core.impl.HAManager
        10: ldc "__DISABLED__"
      StackMap locals: io.vertx.core.impl.HAManager io.vertx.core.impl.VertxInternal io.vertx.core.impl.DeploymentManager io.vertx.core.spi.cluster.ClusterManager java.util.Map int java.lang.String int
      StackMap stack: io.vertx.core.impl.HAManager java.lang.String
        11: putfield io.vertx.core.impl.HAManager.group:Ljava/lang/String;
        12: .line 130
            aload 0 /* this */
            iload 7 /* enabled */
            putfield io.vertx.core.impl.HAManager.enabled:Z
        13: .line 131
            aload 0 /* this */
            new io.vertx.core.json.JsonObject
            dup
            invokespecial io.vertx.core.json.JsonObject.<init>:()V
            ldc "verticles"
            new io.vertx.core.json.JsonArray
            dup
            invokespecial io.vertx.core.json.JsonArray.<init>:()V
            invokevirtual io.vertx.core.json.JsonObject.put:(Ljava/lang/String;Lio/vertx/core/json/JsonArray;)Lio/vertx/core/json/JsonObject;
            ldc "group"
            aload 0 /* this */
            getfield io.vertx.core.impl.HAManager.group:Ljava/lang/String;
            invokevirtual io.vertx.core.json.JsonObject.put:(Ljava/lang/String;Ljava/lang/String;)Lio/vertx/core/json/JsonObject;
            putfield io.vertx.core.impl.HAManager.haInfo:Lio/vertx/core/json/JsonObject;
        14: .line 132
            aload 0 /* this */
            aload 3 /* clusterManager */
            invokeinterface io.vertx.core.spi.cluster.ClusterManager.getNodeID:()Ljava/lang/String;
            putfield io.vertx.core.impl.HAManager.nodeID:Ljava/lang/String;
        15: .line 133
            return
        end local 7 // boolean enabled
        end local 6 // java.lang.String group
        end local 5 // int quorumSize
        end local 4 // java.util.Map clusterMap
        end local 3 // io.vertx.core.spi.cluster.ClusterManager clusterManager
        end local 2 // io.vertx.core.impl.DeploymentManager deploymentManager
        end local 1 // io.vertx.core.impl.VertxInternal vertx
        end local 0 // io.vertx.core.impl.HAManager this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0   16     0               this  Lio/vertx/core/impl/HAManager;
            0   16     1              vertx  Lio/vertx/core/impl/VertxInternal;
            0   16     2  deploymentManager  Lio/vertx/core/impl/DeploymentManager;
            0   16     3     clusterManager  Lio/vertx/core/spi/cluster/ClusterManager;
            0   16     4         clusterMap  Ljava/util/Map<Ljava/lang/String;Ljava/lang/String;>;
            0   16     5         quorumSize  I
            0   16     6              group  Ljava/lang/String;
            0   16     7            enabled  Z
    Signature: (Lio/vertx/core/impl/VertxInternal;Lio/vertx/core/impl/DeploymentManager;Lio/vertx/core/spi/cluster/ClusterManager;Ljava/util/Map<Ljava/lang/String;Ljava/lang/String;>;ILjava/lang/String;Z)V
    MethodParameters:
                   Name  Flags
      vertx              
      deploymentManager  
      clusterManager     
      clusterMap         
      quorumSize         
      group              
      enabled            

  void init();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=5, locals=2, args_size=1
        start local 0 // io.vertx.core.impl.HAManager this
         0: .line 140
            aload 0 /* this */
            getfield io.vertx.core.impl.HAManager.haInfo:Lio/vertx/core/json/JsonObject;
            dup
            astore 1
            monitorenter
         1: .line 141
            aload 0 /* this */
            getfield io.vertx.core.impl.HAManager.clusterMap:Ljava/util/Map;
            aload 0 /* this */
            getfield io.vertx.core.impl.HAManager.nodeID:Ljava/lang/String;
            aload 0 /* this */
            getfield io.vertx.core.impl.HAManager.haInfo:Lio/vertx/core/json/JsonObject;
            invokevirtual io.vertx.core.json.JsonObject.encode:()Ljava/lang/String;
            invokeinterface java.util.Map.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
         2: .line 140
            aload 1
            monitorexit
         3: goto 6
      StackMap locals: io.vertx.core.impl.HAManager io.vertx.core.json.JsonObject
      StackMap stack: java.lang.Throwable
         4: aload 1
            monitorexit
         5: athrow
         6: .line 143
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.core.impl.HAManager.clusterManager:Lio/vertx/core/spi/cluster/ClusterManager;
            new io.vertx.core.impl.HAManager$1
            dup
            aload 0 /* this */
            invokespecial io.vertx.core.impl.HAManager$1.<init>:(Lio/vertx/core/impl/HAManager;)V
            invokeinterface io.vertx.core.spi.cluster.ClusterManager.nodeListener:(Lio/vertx/core/spi/cluster/NodeListener;)V
         7: .line 153
            aload 0 /* this */
            aload 0 /* this */
            getfield io.vertx.core.impl.HAManager.vertx:Lio/vertx/core/impl/VertxInternal;
            ldc 1000
            aload 0 /* this */
            invokedynamic handle(Lio/vertx/core/impl/HAManager;)Lio/vertx/core/Handler;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;)V
                  io/vertx/core/impl/HAManager.lambda$0(Ljava/lang/Long;)V (7)
                  (Ljava/lang/Long;)V
            invokeinterface io.vertx.core.impl.VertxInternal.setPeriodic:(JLio/vertx/core/Handler;)J
            putfield io.vertx.core.impl.HAManager.quorumTimerID:J
         8: .line 155
            aload 0 /* this */
            dup
            astore 1
            monitorenter
         9: .line 156
            aload 0 /* this */
            invokevirtual io.vertx.core.impl.HAManager.checkQuorum:()V
        10: .line 155
            aload 1
            monitorexit
        11: goto 14
      StackMap locals: io.vertx.core.impl.HAManager io.vertx.core.impl.HAManager
      StackMap stack: java.lang.Throwable
        12: aload 1
            monitorexit
        13: athrow
        14: .line 158
      StackMap locals:
      StackMap stack:
            return
        end local 0 // io.vertx.core.impl.HAManager this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   15     0  this  Lio/vertx/core/impl/HAManager;
      Exception table:
        from    to  target  type
           1     3       4  any
           4     5       4  any
           9    11      12  any
          12    13      12  any

  public void removeFromHA(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=8, args_size=2
        start local 0 // io.vertx.core.impl.HAManager this
        start local 1 // java.lang.String depID
         0: .line 162
            aload 0 /* this */
            getfield io.vertx.core.impl.HAManager.deploymentManager:Lio/vertx/core/impl/DeploymentManager;
            aload 1 /* depID */
            invokevirtual io.vertx.core.impl.DeploymentManager.getDeployment:(Ljava/lang/String;)Lio/vertx/core/impl/Deployment;
            astore 2 /* dep */
        start local 2 // io.vertx.core.impl.Deployment dep
         1: .line 163
            aload 2 /* dep */
            ifnull 2
            aload 2 /* dep */
            invokeinterface io.vertx.core.impl.Deployment.deploymentOptions:()Lio/vertx/core/DeploymentOptions;
            invokevirtual io.vertx.core.DeploymentOptions.isHa:()Z
            ifne 3
         2: .line 164
      StackMap locals: io.vertx.core.impl.Deployment
      StackMap stack:
            return
         3: .line 166
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.core.impl.HAManager.haInfo:Lio/vertx/core/json/JsonObject;
            dup
            astore 3
            monitorenter
         4: .line 167
            aload 0 /* this */
            getfield io.vertx.core.impl.HAManager.haInfo:Lio/vertx/core/json/JsonObject;
            ldc "verticles"
            invokevirtual io.vertx.core.json.JsonObject.getJsonArray:(Ljava/lang/String;)Lio/vertx/core/json/JsonArray;
            astore 4 /* haMods */
        start local 4 // io.vertx.core.json.JsonArray haMods
         5: .line 168
            aload 4 /* haMods */
            invokevirtual io.vertx.core.json.JsonArray.iterator:()Ljava/util/Iterator;
            astore 5 /* iter */
        start local 5 // java.util.Iterator iter
         6: .line 169
            goto 11
         7: .line 170
      StackMap locals: io.vertx.core.json.JsonObject io.vertx.core.json.JsonArray java.util.Iterator
      StackMap stack:
            aload 5 /* iter */
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            astore 6 /* obj */
        start local 6 // java.lang.Object obj
         8: .line 171
            aload 6 /* obj */
            checkcast io.vertx.core.json.JsonObject
            astore 7 /* mod */
        start local 7 // io.vertx.core.json.JsonObject mod
         9: .line 172
            aload 7 /* mod */
            ldc "dep_id"
            invokevirtual io.vertx.core.json.JsonObject.getString:(Ljava/lang/String;)Ljava/lang/String;
            aload 1 /* depID */
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 11
        10: .line 173
            aload 5 /* iter */
            invokeinterface java.util.Iterator.remove:()V
        end local 7 // io.vertx.core.json.JsonObject mod
        end local 6 // java.lang.Object obj
        11: .line 169
      StackMap locals:
      StackMap stack:
            aload 5 /* iter */
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 7
        12: .line 176
            aload 0 /* this */
            getfield io.vertx.core.impl.HAManager.clusterMap:Ljava/util/Map;
            aload 0 /* this */
            getfield io.vertx.core.impl.HAManager.nodeID:Ljava/lang/String;
            aload 0 /* this */
            getfield io.vertx.core.impl.HAManager.haInfo:Lio/vertx/core/json/JsonObject;
            invokevirtual io.vertx.core.json.JsonObject.encode:()Ljava/lang/String;
            invokeinterface java.util.Map.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
        end local 5 // java.util.Iterator iter
        end local 4 // io.vertx.core.json.JsonArray haMods
        13: .line 166
            aload 3
            monitorexit
        14: goto 17
      StackMap locals: io.vertx.core.impl.HAManager java.lang.String io.vertx.core.impl.Deployment io.vertx.core.json.JsonObject
      StackMap stack: java.lang.Throwable
        15: aload 3
            monitorexit
        16: athrow
        17: .line 178
      StackMap locals:
      StackMap stack:
            return
        end local 2 // io.vertx.core.impl.Deployment dep
        end local 1 // java.lang.String depID
        end local 0 // io.vertx.core.impl.HAManager this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   18     0    this  Lio/vertx/core/impl/HAManager;
            0   18     1   depID  Ljava/lang/String;
            1   18     2     dep  Lio/vertx/core/impl/Deployment;
            5   13     4  haMods  Lio/vertx/core/json/JsonArray;
            6   13     5    iter  Ljava/util/Iterator<Ljava/lang/Object;>;
            8   11     6     obj  Ljava/lang/Object;
            9   11     7     mod  Lio/vertx/core/json/JsonObject;
      Exception table:
        from    to  target  type
           4    14      15  any
          15    16      15  any
    MethodParameters:
       Name  Flags
      depID  

  public void addDataToAHAInfo(java.lang.String, io.vertx.core.json.JsonObject);
    descriptor: (Ljava/lang/String;Lio/vertx/core/json/JsonObject;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // io.vertx.core.impl.HAManager this
        start local 1 // java.lang.String key
        start local 2 // io.vertx.core.json.JsonObject value
         0: .line 181
            aload 0 /* this */
            getfield io.vertx.core.impl.HAManager.haInfo:Lio/vertx/core/json/JsonObject;
            dup
            astore 3
            monitorenter
         1: .line 182
            aload 0 /* this */
            getfield io.vertx.core.impl.HAManager.haInfo:Lio/vertx/core/json/JsonObject;
            aload 1 /* key */
            aload 2 /* value */
            invokevirtual io.vertx.core.json.JsonObject.put:(Ljava/lang/String;Lio/vertx/core/json/JsonObject;)Lio/vertx/core/json/JsonObject;
            pop
         2: .line 183
            aload 0 /* this */
            getfield io.vertx.core.impl.HAManager.clusterMap:Ljava/util/Map;
            aload 0 /* this */
            getfield io.vertx.core.impl.HAManager.nodeID:Ljava/lang/String;
            aload 0 /* this */
            getfield io.vertx.core.impl.HAManager.haInfo:Lio/vertx/core/json/JsonObject;
            invokevirtual io.vertx.core.json.JsonObject.encode:()Ljava/lang/String;
            invokeinterface java.util.Map.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
         3: .line 181
            aload 3
            monitorexit
         4: goto 7
      StackMap locals: io.vertx.core.impl.HAManager java.lang.String io.vertx.core.json.JsonObject io.vertx.core.json.JsonObject
      StackMap stack: java.lang.Throwable
         5: aload 3
            monitorexit
         6: athrow
         7: .line 185
      StackMap locals:
      StackMap stack:
            return
        end local 2 // io.vertx.core.json.JsonObject value
        end local 1 // java.lang.String key
        end local 0 // io.vertx.core.impl.HAManager this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    8     0   this  Lio/vertx/core/impl/HAManager;
            0    8     1    key  Ljava/lang/String;
            0    8     2  value  Lio/vertx/core/json/JsonObject;
      Exception table:
        from    to  target  type
           1     4       5  any
           5     6       5  any
    MethodParameters:
       Name  Flags
      key    
      value  

  public void deployVerticle(java.lang.String, io.vertx.core.DeploymentOptions, io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.String>>);
    descriptor: (Ljava/lang/String;Lio/vertx/core/DeploymentOptions;Lio/vertx/core/Handler;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // io.vertx.core.impl.HAManager this
        start local 1 // java.lang.String verticleName
        start local 2 // io.vertx.core.DeploymentOptions deploymentOptions
        start local 3 // io.vertx.core.Handler doneHandler
         0: .line 189
            aload 0 /* this */
            getfield io.vertx.core.impl.HAManager.attainedQuorum:Z
            ifeq 3
         1: .line 190
            aload 0 /* this */
            aload 1 /* verticleName */
            aload 2 /* deploymentOptions */
            aload 3 /* doneHandler */
            invokevirtual io.vertx.core.impl.HAManager.doDeployVerticle:(Ljava/lang/String;Lio/vertx/core/DeploymentOptions;Lio/vertx/core/Handler;)V
         2: .line 191
            goto 5
         3: .line 192
      StackMap locals:
      StackMap stack:
            getstatic io.vertx.core.impl.HAManager.log:Lio/vertx/core/logging/Logger;
            ldc "Quorum not attained. Deployment of verticle will be delayed until there's a quorum."
            invokevirtual io.vertx.core.logging.Logger.info:(Ljava/lang/Object;)V
         4: .line 193
            aload 0 /* this */
            aload 1 /* verticleName */
            aload 2 /* deploymentOptions */
            aload 3 /* doneHandler */
            invokevirtual io.vertx.core.impl.HAManager.addToHADeployList:(Ljava/lang/String;Lio/vertx/core/DeploymentOptions;Lio/vertx/core/Handler;)V
         5: .line 195
      StackMap locals:
      StackMap stack:
            return
        end local 3 // io.vertx.core.Handler doneHandler
        end local 2 // io.vertx.core.DeploymentOptions deploymentOptions
        end local 1 // java.lang.String verticleName
        end local 0 // io.vertx.core.impl.HAManager this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0    6     0               this  Lio/vertx/core/impl/HAManager;
            0    6     1       verticleName  Ljava/lang/String;
            0    6     2  deploymentOptions  Lio/vertx/core/DeploymentOptions;
            0    6     3        doneHandler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/String;>;>;
    Signature: (Ljava/lang/String;Lio/vertx/core/DeploymentOptions;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/String;>;>;)V
    MethodParameters:
                   Name  Flags
      verticleName       final
      deploymentOptions  
      doneHandler        final

  public void stop();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // io.vertx.core.impl.HAManager this
         0: .line 199
            aload 0 /* this */
            getfield io.vertx.core.impl.HAManager.stopped:Z
            ifne 5
         1: .line 200
            aload 0 /* this */
            getfield io.vertx.core.impl.HAManager.clusterManager:Lio/vertx/core/spi/cluster/ClusterManager;
            invokeinterface io.vertx.core.spi.cluster.ClusterManager.isActive:()Z
            ifeq 3
         2: .line 201
            aload 0 /* this */
            getfield io.vertx.core.impl.HAManager.clusterMap:Ljava/util/Map;
            aload 0 /* this */
            getfield io.vertx.core.impl.HAManager.nodeID:Ljava/lang/String;
            invokeinterface java.util.Map.remove:(Ljava/lang/Object;)Ljava/lang/Object;
            pop
         3: .line 203
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.core.impl.HAManager.vertx:Lio/vertx/core/impl/VertxInternal;
            aload 0 /* this */
            getfield io.vertx.core.impl.HAManager.quorumTimerID:J
            invokeinterface io.vertx.core.impl.VertxInternal.cancelTimer:(J)Z
            pop
         4: .line 204
            aload 0 /* this */
            iconst_1
            putfield io.vertx.core.impl.HAManager.stopped:Z
         5: .line 206
      StackMap locals:
      StackMap stack:
            return
        end local 0 // io.vertx.core.impl.HAManager this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lio/vertx/core/impl/HAManager;

  public void simulateKill();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=8, args_size=1
        start local 0 // io.vertx.core.impl.HAManager this
         0: .line 209
            aload 0 /* this */
            getfield io.vertx.core.impl.HAManager.stopped:Z
            ifne 21
         1: .line 210
            aload 0 /* this */
            iconst_1
            putfield io.vertx.core.impl.HAManager.killed:Z
         2: .line 211
            new java.util.concurrent.CountDownLatch
            dup
            iconst_1
            invokespecial java.util.concurrent.CountDownLatch.<init>:(I)V
            astore 1 /* latch */
        start local 1 // java.util.concurrent.CountDownLatch latch
         3: .line 212
            aload 0 /* this */
            getfield io.vertx.core.impl.HAManager.clusterManager:Lio/vertx/core/spi/cluster/ClusterManager;
            aload 1 /* latch */
            invokedynamic handle(Ljava/util/concurrent/CountDownLatch;)Lio/vertx/core/Handler;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;)V
                  io/vertx/core/impl/HAManager.lambda$1(Ljava/util/concurrent/CountDownLatch;Lio/vertx/core/AsyncResult;)V (6)
                  (Lio/vertx/core/AsyncResult;)V
            invokeinterface io.vertx.core.spi.cluster.ClusterManager.leave:(Lio/vertx/core/Handler;)V
         4: .line 218
            aload 0 /* this */
            getfield io.vertx.core.impl.HAManager.vertx:Lio/vertx/core/impl/VertxInternal;
            aload 0 /* this */
            getfield io.vertx.core.impl.HAManager.quorumTimerID:J
            invokeinterface io.vertx.core.impl.VertxInternal.cancelTimer:(J)Z
            pop
         5: .line 220
            iconst_0
            istore 2 /* interrupted */
        start local 2 // boolean interrupted
         6: .line 222
            getstatic java.util.concurrent.TimeUnit.MINUTES:Ljava/util/concurrent/TimeUnit;
            lconst_1
            invokevirtual java.util.concurrent.TimeUnit.toNanos:(J)J
            lstore 3 /* remainingNanos */
        start local 3 // long remainingNanos
         7: .line 223
            invokestatic java.lang.System.nanoTime:()J
            lload 3 /* remainingNanos */
            ladd
            lstore 5 /* end */
        start local 5 // long end
         8: .line 227
      StackMap locals: io.vertx.core.impl.HAManager java.util.concurrent.CountDownLatch int long long
      StackMap stack:
            aload 1 /* latch */
            lload 3 /* remainingNanos */
            getstatic java.util.concurrent.TimeUnit.NANOSECONDS:Ljava/util/concurrent/TimeUnit;
            invokevirtual java.util.concurrent.CountDownLatch.await:(JLjava/util/concurrent/TimeUnit;)Z
            pop
         9: .line 228
            goto 18
        10: .line 229
      StackMap locals:
      StackMap stack: java.lang.InterruptedException
            pop
        11: .line 230
            iconst_1
            istore 2 /* interrupted */
        12: .line 231
            lload 5 /* end */
            invokestatic java.lang.System.nanoTime:()J
            lsub
            lstore 3 /* remainingNanos */
        13: .line 225
            goto 8
        end local 5 // long end
        end local 3 // long remainingNanos
        14: .line 234
      StackMap locals: io.vertx.core.impl.HAManager java.util.concurrent.CountDownLatch int
      StackMap stack: java.lang.Throwable
            astore 7
        15: .line 235
            iload 2 /* interrupted */
            ifeq 17
        16: .line 236
            invokestatic java.lang.Thread.currentThread:()Ljava/lang/Thread;
            invokevirtual java.lang.Thread.interrupt:()V
        17: .line 238
      StackMap locals: io.vertx.core.impl.HAManager java.util.concurrent.CountDownLatch int top top top top java.lang.Throwable
      StackMap stack:
            aload 7
            athrow
        18: .line 235
      StackMap locals: io.vertx.core.impl.HAManager java.util.concurrent.CountDownLatch int
      StackMap stack:
            iload 2 /* interrupted */
            ifeq 20
        19: .line 236
            invokestatic java.lang.Thread.currentThread:()Ljava/lang/Thread;
            invokevirtual java.lang.Thread.interrupt:()V
        20: .line 240
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_1
            putfield io.vertx.core.impl.HAManager.stopped:Z
        end local 2 // boolean interrupted
        end local 1 // java.util.concurrent.CountDownLatch latch
        21: .line 242
      StackMap locals:
      StackMap stack:
            return
        end local 0 // io.vertx.core.impl.HAManager this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0   22     0            this  Lio/vertx/core/impl/HAManager;
            3   21     1           latch  Ljava/util/concurrent/CountDownLatch;
            6   21     2     interrupted  Z
            7   14     3  remainingNanos  J
            8   14     5             end  J
      Exception table:
        from    to  target  type
           8     9      10  Class java.lang.InterruptedException
           6    14      14  any

  public void setFailoverCompleteHandler(io.vertx.core.impl.FailoverCompleteHandler);
    descriptor: (Lio/vertx/core/impl/FailoverCompleteHandler;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.impl.HAManager this
        start local 1 // io.vertx.core.impl.FailoverCompleteHandler failoverCompleteHandler
         0: .line 245
            aload 0 /* this */
            aload 1 /* failoverCompleteHandler */
            putfield io.vertx.core.impl.HAManager.failoverCompleteHandler:Lio/vertx/core/impl/FailoverCompleteHandler;
         1: .line 246
            return
        end local 1 // io.vertx.core.impl.FailoverCompleteHandler failoverCompleteHandler
        end local 0 // io.vertx.core.impl.HAManager this
      LocalVariableTable:
        Start  End  Slot                     Name  Signature
            0    2     0                     this  Lio/vertx/core/impl/HAManager;
            0    2     1  failoverCompleteHandler  Lio/vertx/core/impl/FailoverCompleteHandler;
    MethodParameters:
                         Name  Flags
      failoverCompleteHandler  

  public void setClusterViewChangedHandler(java.util.function.Consumer<java.util.Set<java.lang.String>>);
    descriptor: (Ljava/util/function/Consumer;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.impl.HAManager this
        start local 1 // java.util.function.Consumer handler
         0: .line 249
            aload 0 /* this */
            aload 1 /* handler */
            putfield io.vertx.core.impl.HAManager.clusterViewChangedHandler:Ljava/util/function/Consumer;
         1: .line 250
            return
        end local 1 // java.util.function.Consumer handler
        end local 0 // io.vertx.core.impl.HAManager this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lio/vertx/core/impl/HAManager;
            0    2     1  handler  Ljava/util/function/Consumer<Ljava/util/Set<Ljava/lang/String;>;>;
    Signature: (Ljava/util/function/Consumer<Ljava/util/Set<Ljava/lang/String;>;>;)V
    MethodParameters:
         Name  Flags
      handler  

  public boolean isKilled();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.impl.HAManager this
         0: .line 253
            aload 0 /* this */
            getfield io.vertx.core.impl.HAManager.killed:Z
            ireturn
        end local 0 // io.vertx.core.impl.HAManager this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/impl/HAManager;

  public boolean isEnabled();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.impl.HAManager this
         0: .line 257
            aload 0 /* this */
            getfield io.vertx.core.impl.HAManager.enabled:Z
            ireturn
        end local 0 // io.vertx.core.impl.HAManager this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/impl/HAManager;

  public void failDuringFailover(boolean);
    descriptor: (Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.impl.HAManager this
        start local 1 // boolean fail
         0: .line 262
            aload 0 /* this */
            iload 1 /* fail */
            putfield io.vertx.core.impl.HAManager.failDuringFailover:Z
         1: .line 263
            return
        end local 1 // boolean fail
        end local 0 // io.vertx.core.impl.HAManager this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/core/impl/HAManager;
            0    2     1  fail  Z
    MethodParameters:
      Name  Flags
      fail  

  private void doDeployVerticle(java.lang.String, io.vertx.core.DeploymentOptions, io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.String>>);
    descriptor: (Ljava/lang/String;Lio/vertx/core/DeploymentOptions;Lio/vertx/core/Handler;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=5, args_size=4
        start local 0 // io.vertx.core.impl.HAManager this
        start local 1 // java.lang.String verticleName
        start local 2 // io.vertx.core.DeploymentOptions deploymentOptions
        start local 3 // io.vertx.core.Handler doneHandler
         0: .line 267
            aload 0 /* this */
            aload 1 /* verticleName */
            aload 2 /* deploymentOptions */
            aload 3 /* doneHandler */
            invokedynamic handle(Lio/vertx/core/impl/HAManager;Ljava/lang/String;Lio/vertx/core/DeploymentOptions;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/core/impl/HAManager.lambda$2(Ljava/lang/String;Lio/vertx/core/DeploymentOptions;Lio/vertx/core/Handler;Lio/vertx/core/AsyncResult;)V (7)
                  (Lio/vertx/core/AsyncResult;)V
            astore 4 /* wrappedHandler */
        start local 4 // io.vertx.core.Handler wrappedHandler
         1: .line 285
            aload 0 /* this */
            getfield io.vertx.core.impl.HAManager.deploymentManager:Lio/vertx/core/impl/DeploymentManager;
            aload 1 /* verticleName */
            aload 2 /* deploymentOptions */
            aload 4 /* wrappedHandler */
            invokevirtual io.vertx.core.impl.DeploymentManager.deployVerticle:(Ljava/lang/String;Lio/vertx/core/DeploymentOptions;Lio/vertx/core/Handler;)V
         2: .line 286
            return
        end local 4 // io.vertx.core.Handler wrappedHandler
        end local 3 // io.vertx.core.Handler doneHandler
        end local 2 // io.vertx.core.DeploymentOptions deploymentOptions
        end local 1 // java.lang.String verticleName
        end local 0 // io.vertx.core.impl.HAManager this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0    3     0               this  Lio/vertx/core/impl/HAManager;
            0    3     1       verticleName  Ljava/lang/String;
            0    3     2  deploymentOptions  Lio/vertx/core/DeploymentOptions;
            0    3     3        doneHandler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/String;>;>;
            1    3     4     wrappedHandler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/String;>;>;
    Signature: (Ljava/lang/String;Lio/vertx/core/DeploymentOptions;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/String;>;>;)V
    MethodParameters:
                   Name  Flags
      verticleName       final
      deploymentOptions  
      doneHandler        final

  private synchronized void nodeAdded(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0022) ACC_PRIVATE, ACC_SYNCHRONIZED
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // io.vertx.core.impl.HAManager this
        start local 1 // java.lang.String nodeID
         0: .line 291
            aload 0 /* this */
            invokevirtual io.vertx.core.impl.HAManager.addHaInfoIfLost:()V
         1: .line 294
            aload 0 /* this */
            aload 1 /* nodeID */
            invokestatic java.lang.System.currentTimeMillis:()J
            invokevirtual io.vertx.core.impl.HAManager.checkQuorumWhenAdded:(Ljava/lang/String;J)V
         2: .line 295
            return
        end local 1 // java.lang.String nodeID
        end local 0 // io.vertx.core.impl.HAManager this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lio/vertx/core/impl/HAManager;
            0    3     1  nodeID  Ljava/lang/String;
    MethodParameters:
        Name  Flags
      nodeID  final

  private synchronized void nodeLeft(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0022) ACC_PRIVATE, ACC_SYNCHRONIZED
    Code:
      stack=3, locals=7, args_size=2
        start local 0 // io.vertx.core.impl.HAManager this
        start local 1 // java.lang.String leftNodeID
         0: .line 300
            aload 0 /* this */
            invokevirtual io.vertx.core.impl.HAManager.addHaInfoIfLost:()V
         1: .line 302
            aload 0 /* this */
            invokevirtual io.vertx.core.impl.HAManager.checkQuorum:()V
         2: .line 303
            aload 0 /* this */
            getfield io.vertx.core.impl.HAManager.attainedQuorum:Z
            ifeq 15
         3: .line 304
            aload 0 /* this */
            aload 1 /* leftNodeID */
            invokevirtual io.vertx.core.impl.HAManager.checkSubs:(Ljava/lang/String;)V
         4: .line 307
            aload 0 /* this */
            getfield io.vertx.core.impl.HAManager.clusterMap:Ljava/util/Map;
            aload 1 /* leftNodeID */
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast java.lang.String
            astore 2 /* sclusterInfo */
        start local 2 // java.lang.String sclusterInfo
         5: .line 309
            aload 2 /* sclusterInfo */
            ifnull 8
         6: .line 312
            new io.vertx.core.json.JsonObject
            dup
            aload 2 /* sclusterInfo */
            invokespecial io.vertx.core.json.JsonObject.<init>:(Ljava/lang/String;)V
            astore 3 /* clusterInfo */
        start local 3 // io.vertx.core.json.JsonObject clusterInfo
         7: .line 313
            aload 0 /* this */
            aload 1 /* leftNodeID */
            aload 3 /* clusterInfo */
            invokevirtual io.vertx.core.impl.HAManager.checkFailover:(Ljava/lang/String;Lio/vertx/core/json/JsonObject;)V
        end local 3 // io.vertx.core.json.JsonObject clusterInfo
         8: .line 318
      StackMap locals: java.lang.String
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.core.impl.HAManager.clusterManager:Lio/vertx/core/spi/cluster/ClusterManager;
            invokeinterface io.vertx.core.spi.cluster.ClusterManager.getNodes:()Ljava/util/List;
            astore 3 /* nodes */
        start local 3 // java.util.List nodes
         9: .line 320
            aload 0 /* this */
            getfield io.vertx.core.impl.HAManager.clusterMap:Ljava/util/Map;
            invokeinterface java.util.Map.entrySet:()Ljava/util/Set;
            invokeinterface java.util.Set.iterator:()Ljava/util/Iterator;
            astore 5
            goto 14
      StackMap locals: io.vertx.core.impl.HAManager java.lang.String java.lang.String java.util.List top java.util.Iterator
      StackMap stack:
        10: aload 5
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.util.Map$Entry
            astore 4 /* entry */
        start local 4 // java.util.Map$Entry entry
        11: .line 321
            aload 1 /* leftNodeID */
            aload 4 /* entry */
            invokeinterface java.util.Map$Entry.getKey:()Ljava/lang/Object;
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifne 14
            aload 3 /* nodes */
            aload 4 /* entry */
            invokeinterface java.util.Map$Entry.getKey:()Ljava/lang/Object;
            invokeinterface java.util.List.contains:(Ljava/lang/Object;)Z
            ifne 14
        12: .line 322
            new io.vertx.core.json.JsonObject
            dup
            aload 4 /* entry */
            invokeinterface java.util.Map$Entry.getValue:()Ljava/lang/Object;
            checkcast java.lang.String
            invokespecial io.vertx.core.json.JsonObject.<init>:(Ljava/lang/String;)V
            astore 6 /* haInfo */
        start local 6 // io.vertx.core.json.JsonObject haInfo
        13: .line 323
            aload 0 /* this */
            aload 4 /* entry */
            invokeinterface java.util.Map$Entry.getKey:()Ljava/lang/Object;
            checkcast java.lang.String
            aload 6 /* haInfo */
            invokevirtual io.vertx.core.impl.HAManager.checkFailover:(Ljava/lang/String;Lio/vertx/core/json/JsonObject;)V
        end local 6 // io.vertx.core.json.JsonObject haInfo
        end local 4 // java.util.Map$Entry entry
        14: .line 320
      StackMap locals:
      StackMap stack:
            aload 5
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 10
        end local 3 // java.util.List nodes
        end local 2 // java.lang.String sclusterInfo
        15: .line 327
      StackMap locals: io.vertx.core.impl.HAManager java.lang.String
      StackMap stack:
            return
        end local 1 // java.lang.String leftNodeID
        end local 0 // io.vertx.core.impl.HAManager this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   16     0          this  Lio/vertx/core/impl/HAManager;
            0   16     1    leftNodeID  Ljava/lang/String;
            5   15     2  sclusterInfo  Ljava/lang/String;
            7    8     3   clusterInfo  Lio/vertx/core/json/JsonObject;
            9   15     3         nodes  Ljava/util/List<Ljava/lang/String;>;
           11   14     4         entry  Ljava/util/Map$Entry<Ljava/lang/String;Ljava/lang/String;>;
           13   14     6        haInfo  Lio/vertx/core/json/JsonObject;
    MethodParameters:
            Name  Flags
      leftNodeID  

  private void addHaInfoIfLost();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // io.vertx.core.impl.HAManager this
         0: .line 330
            aload 0 /* this */
            getfield io.vertx.core.impl.HAManager.clusterManager:Lio/vertx/core/spi/cluster/ClusterManager;
            invokeinterface io.vertx.core.spi.cluster.ClusterManager.getNodes:()Ljava/util/List;
            aload 0 /* this */
            getfield io.vertx.core.impl.HAManager.nodeID:Ljava/lang/String;
            invokeinterface java.util.List.contains:(Ljava/lang/Object;)Z
            ifeq 7
            aload 0 /* this */
            getfield io.vertx.core.impl.HAManager.clusterMap:Ljava/util/Map;
            aload 0 /* this */
            getfield io.vertx.core.impl.HAManager.nodeID:Ljava/lang/String;
            invokeinterface java.util.Map.containsKey:(Ljava/lang/Object;)Z
            ifne 7
         1: .line 331
            aload 0 /* this */
            getfield io.vertx.core.impl.HAManager.haInfo:Lio/vertx/core/json/JsonObject;
            dup
            astore 1
            monitorenter
         2: .line 332
            aload 0 /* this */
            getfield io.vertx.core.impl.HAManager.clusterMap:Ljava/util/Map;
            aload 0 /* this */
            getfield io.vertx.core.impl.HAManager.nodeID:Ljava/lang/String;
            aload 0 /* this */
            getfield io.vertx.core.impl.HAManager.haInfo:Lio/vertx/core/json/JsonObject;
            invokevirtual io.vertx.core.json.JsonObject.encode:()Ljava/lang/String;
            invokeinterface java.util.Map.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
         3: .line 331
            aload 1
            monitorexit
         4: goto 7
      StackMap locals: io.vertx.core.impl.HAManager io.vertx.core.json.JsonObject
      StackMap stack: java.lang.Throwable
         5: aload 1
            monitorexit
         6: athrow
         7: .line 335
      StackMap locals:
      StackMap stack:
            return
        end local 0 // io.vertx.core.impl.HAManager this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Lio/vertx/core/impl/HAManager;
      Exception table:
        from    to  target  type
           2     4       5  any
           5     6       5  any

  private synchronized void checkQuorumWhenAdded(java.lang.String, long);
    descriptor: (Ljava/lang/String;J)V
    flags: (0x0022) ACC_PRIVATE, ACC_SYNCHRONIZED
    Code:
      stack=7, locals=4, args_size=3
        start local 0 // io.vertx.core.impl.HAManager this
        start local 1 // java.lang.String nodeID
        start local 2 // long start
         0: .line 338
            aload 0 /* this */
            getfield io.vertx.core.impl.HAManager.clusterMap:Ljava/util/Map;
            aload 1 /* nodeID */
            invokeinterface java.util.Map.containsKey:(Ljava/lang/Object;)Z
            ifeq 5
         1: .line 339
            aload 0 /* this */
            invokevirtual io.vertx.core.impl.HAManager.checkQuorum:()V
         2: .line 340
            aload 0 /* this */
            getfield io.vertx.core.impl.HAManager.attainedQuorum:Z
            ifeq 6
         3: .line 341
            aload 0 /* this */
            aload 1 /* nodeID */
            invokevirtual io.vertx.core.impl.HAManager.checkSubs:(Ljava/lang/String;)V
         4: .line 343
            goto 6
         5: .line 344
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.core.impl.HAManager.vertx:Lio/vertx/core/impl/VertxInternal;
            ldc 200
            aload 0 /* this */
            lload 2 /* start */
            aload 1 /* nodeID */
            invokedynamic handle(Lio/vertx/core/impl/HAManager;JLjava/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/core/impl/HAManager.lambda$5(JLjava/lang/String;Ljava/lang/Long;)V (7)
                  (Ljava/lang/Long;)V
            invokeinterface io.vertx.core.impl.VertxInternal.setTimer:(JLio/vertx/core/Handler;)J
            pop2
         6: .line 363
      StackMap locals:
      StackMap stack:
            return
        end local 2 // long start
        end local 1 // java.lang.String nodeID
        end local 0 // io.vertx.core.impl.HAManager this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    7     0    this  Lio/vertx/core/impl/HAManager;
            0    7     1  nodeID  Ljava/lang/String;
            0    7     2   start  J
    MethodParameters:
        Name  Flags
      nodeID  final
      start   final

  private void checkQuorum();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=8, args_size=1
        start local 0 // io.vertx.core.impl.HAManager this
         0: .line 367
            aload 0 /* this */
            getfield io.vertx.core.impl.HAManager.quorumSize:I
            ifne 3
         1: .line 368
            aload 0 /* this */
            iconst_1
            putfield io.vertx.core.impl.HAManager.attainedQuorum:Z
         2: .line 369
            goto 24
         3: .line 370
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.core.impl.HAManager.clusterManager:Lio/vertx/core/spi/cluster/ClusterManager;
            invokeinterface io.vertx.core.spi.cluster.ClusterManager.getNodes:()Ljava/util/List;
            astore 1 /* nodes */
        start local 1 // java.util.List nodes
         4: .line 371
            iconst_0
            istore 2 /* count */
        start local 2 // int count
         5: .line 372
            aload 1 /* nodes */
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 4
            goto 13
      StackMap locals: io.vertx.core.impl.HAManager java.util.List int top java.util.Iterator
      StackMap stack:
         6: aload 4
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.lang.String
            astore 3 /* node */
        start local 3 // java.lang.String node
         7: .line 373
            aload 0 /* this */
            getfield io.vertx.core.impl.HAManager.clusterMap:Ljava/util/Map;
            aload 3 /* node */
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast java.lang.String
            astore 5 /* json */
        start local 5 // java.lang.String json
         8: .line 374
            aload 5 /* json */
            ifnull 13
         9: .line 375
            new io.vertx.core.json.JsonObject
            dup
            aload 5 /* json */
            invokespecial io.vertx.core.json.JsonObject.<init>:(Ljava/lang/String;)V
            astore 6 /* clusterInfo */
        start local 6 // io.vertx.core.json.JsonObject clusterInfo
        10: .line 376
            aload 6 /* clusterInfo */
            ldc "group"
            invokevirtual io.vertx.core.json.JsonObject.getString:(Ljava/lang/String;)Ljava/lang/String;
            astore 7 /* group */
        start local 7 // java.lang.String group
        11: .line 377
            aload 7 /* group */
            aload 0 /* this */
            getfield io.vertx.core.impl.HAManager.group:Ljava/lang/String;
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 13
        12: .line 378
            iinc 2 /* count */ 1
        end local 7 // java.lang.String group
        end local 6 // io.vertx.core.json.JsonObject clusterInfo
        end local 5 // java.lang.String json
        end local 3 // java.lang.String node
        13: .line 372
      StackMap locals:
      StackMap stack:
            aload 4
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 6
        14: .line 382
            iload 2 /* count */
            aload 0 /* this */
            getfield io.vertx.core.impl.HAManager.quorumSize:I
            if_icmplt 15
            iconst_1
            goto 16
      StackMap locals: io.vertx.core.impl.HAManager java.util.List int
      StackMap stack:
        15: iconst_0
      StackMap locals:
      StackMap stack: int
        16: istore 3 /* attained */
        start local 3 // boolean attained
        17: .line 383
            aload 0 /* this */
            getfield io.vertx.core.impl.HAManager.attainedQuorum:Z
            ifne 21
            iload 3 /* attained */
            ifeq 21
        18: .line 385
            getstatic io.vertx.core.impl.HAManager.log:Lio/vertx/core/logging/Logger;
            ldc "A quorum has been obtained. Any deploymentIDs waiting on a quorum will now be deployed"
            invokevirtual io.vertx.core.logging.Logger.info:(Ljava/lang/Object;)V
        19: .line 386
            aload 0 /* this */
            iconst_1
            putfield io.vertx.core.impl.HAManager.attainedQuorum:Z
        20: .line 387
            goto 24
      StackMap locals: int
      StackMap stack:
        21: aload 0 /* this */
            getfield io.vertx.core.impl.HAManager.attainedQuorum:Z
            ifeq 24
            iload 3 /* attained */
            ifne 24
        22: .line 389
            getstatic io.vertx.core.impl.HAManager.log:Lio/vertx/core/logging/Logger;
            ldc "There is no longer a quorum. Any HA deploymentIDs will be undeployed until a quorum is re-attained"
            invokevirtual io.vertx.core.logging.Logger.info:(Ljava/lang/Object;)V
        23: .line 390
            aload 0 /* this */
            iconst_0
            putfield io.vertx.core.impl.HAManager.attainedQuorum:Z
        end local 3 // boolean attained
        end local 2 // int count
        end local 1 // java.util.List nodes
        24: .line 393
      StackMap locals:
      StackMap stack:
            return
        end local 0 // io.vertx.core.impl.HAManager this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   25     0         this  Lio/vertx/core/impl/HAManager;
            4   24     1        nodes  Ljava/util/List<Ljava/lang/String;>;
            5   24     2        count  I
            7   13     3         node  Ljava/lang/String;
            8   13     5         json  Ljava/lang/String;
           10   13     6  clusterInfo  Lio/vertx/core/json/JsonObject;
           11   13     7        group  Ljava/lang/String;
           17   24     3     attained  Z

  private void addToHA(java.lang.String, java.lang.String, io.vertx.core.DeploymentOptions);
    descriptor: (Ljava/lang/String;Ljava/lang/String;Lio/vertx/core/DeploymentOptions;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=8, args_size=4
        start local 0 // io.vertx.core.impl.HAManager this
        start local 1 // java.lang.String deploymentID
        start local 2 // java.lang.String verticleName
        start local 3 // io.vertx.core.DeploymentOptions deploymentOptions
         0: .line 398
            aload 0 /* this */
            getfield io.vertx.core.impl.HAManager.haInfo:Lio/vertx/core/json/JsonObject;
            dup
            astore 5
            monitorenter
         1: .line 399
            new io.vertx.core.json.JsonObject
            dup
            invokespecial io.vertx.core.json.JsonObject.<init>:()V
            ldc "dep_id"
            aload 1 /* deploymentID */
            invokevirtual io.vertx.core.json.JsonObject.put:(Ljava/lang/String;Ljava/lang/String;)Lio/vertx/core/json/JsonObject;
            astore 6 /* verticleConf */
        start local 6 // io.vertx.core.json.JsonObject verticleConf
         2: .line 400
            aload 6 /* verticleConf */
            ldc "verticle_name"
            aload 2 /* verticleName */
            invokevirtual io.vertx.core.json.JsonObject.put:(Ljava/lang/String;Ljava/lang/String;)Lio/vertx/core/json/JsonObject;
            pop
         3: .line 401
            aload 6 /* verticleConf */
            ldc "options"
            aload 3 /* deploymentOptions */
            invokevirtual io.vertx.core.DeploymentOptions.toJson:()Lio/vertx/core/json/JsonObject;
            invokevirtual io.vertx.core.json.JsonObject.put:(Ljava/lang/String;Lio/vertx/core/json/JsonObject;)Lio/vertx/core/json/JsonObject;
            pop
         4: .line 402
            aload 0 /* this */
            getfield io.vertx.core.impl.HAManager.haInfo:Lio/vertx/core/json/JsonObject;
            ldc "verticles"
            invokevirtual io.vertx.core.json.JsonObject.getJsonArray:(Ljava/lang/String;)Lio/vertx/core/json/JsonArray;
            astore 7 /* haMods */
        start local 7 // io.vertx.core.json.JsonArray haMods
         5: .line 403
            aload 7 /* haMods */
            aload 6 /* verticleConf */
            invokevirtual io.vertx.core.json.JsonArray.add:(Lio/vertx/core/json/JsonObject;)Lio/vertx/core/json/JsonArray;
            pop
         6: .line 404
            aload 0 /* this */
            getfield io.vertx.core.impl.HAManager.haInfo:Lio/vertx/core/json/JsonObject;
            invokevirtual io.vertx.core.json.JsonObject.encode:()Ljava/lang/String;
            astore 4 /* encoded */
        start local 4 // java.lang.String encoded
         7: .line 405
            aload 0 /* this */
            getfield io.vertx.core.impl.HAManager.clusterMap:Ljava/util/Map;
            aload 0 /* this */
            getfield io.vertx.core.impl.HAManager.nodeID:Ljava/lang/String;
            aload 4 /* encoded */
            invokeinterface java.util.Map.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
        end local 7 // io.vertx.core.json.JsonArray haMods
        end local 6 // io.vertx.core.json.JsonObject verticleConf
         8: .line 398
            aload 5
            monitorexit
         9: goto 12
        end local 4 // java.lang.String encoded
      StackMap locals: io.vertx.core.impl.HAManager java.lang.String java.lang.String io.vertx.core.DeploymentOptions top io.vertx.core.json.JsonObject
      StackMap stack: java.lang.Throwable
        10: aload 5
            monitorexit
        11: athrow
        start local 4 // java.lang.String encoded
        12: .line 407
      StackMap locals: io.vertx.core.impl.HAManager java.lang.String java.lang.String io.vertx.core.DeploymentOptions java.lang.String
      StackMap stack:
            return
        end local 4 // java.lang.String encoded
        end local 3 // io.vertx.core.DeploymentOptions deploymentOptions
        end local 2 // java.lang.String verticleName
        end local 1 // java.lang.String deploymentID
        end local 0 // io.vertx.core.impl.HAManager this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0   13     0               this  Lio/vertx/core/impl/HAManager;
            0   13     1       deploymentID  Ljava/lang/String;
            0   13     2       verticleName  Ljava/lang/String;
            0   13     3  deploymentOptions  Lio/vertx/core/DeploymentOptions;
            7   10     4            encoded  Ljava/lang/String;
           12   13     4            encoded  Ljava/lang/String;
            2    8     6       verticleConf  Lio/vertx/core/json/JsonObject;
            5    8     7             haMods  Lio/vertx/core/json/JsonArray;
      Exception table:
        from    to  target  type
           1     9      10  any
          10    11      10  any
    MethodParameters:
                   Name  Flags
      deploymentID       
      verticleName       
      deploymentOptions  

  private void addToHADeployList(java.lang.String, io.vertx.core.DeploymentOptions, io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.String>>);
    descriptor: (Ljava/lang/String;Lio/vertx/core/DeploymentOptions;Lio/vertx/core/Handler;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=4, args_size=4
        start local 0 // io.vertx.core.impl.HAManager this
        start local 1 // java.lang.String verticleName
        start local 2 // io.vertx.core.DeploymentOptions deploymentOptions
        start local 3 // io.vertx.core.Handler doneHandler
         0: .line 412
            aload 0 /* this */
            getfield io.vertx.core.impl.HAManager.toDeployOnQuorum:Ljava/util/Queue;
            aload 0 /* this */
            aload 1 /* verticleName */
            aload 2 /* deploymentOptions */
            aload 3 /* doneHandler */
            invokedynamic run(Lio/vertx/core/impl/HAManager;Ljava/lang/String;Lio/vertx/core/DeploymentOptions;Lio/vertx/core/Handler;)Ljava/lang/Runnable;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  ()V
                  io/vertx/core/impl/HAManager.lambda$7(Ljava/lang/String;Lio/vertx/core/DeploymentOptions;Lio/vertx/core/Handler;)V (7)
                  ()V
            invokeinterface java.util.Queue.add:(Ljava/lang/Object;)Z
            pop
         1: .line 421
            return
        end local 3 // io.vertx.core.Handler doneHandler
        end local 2 // io.vertx.core.DeploymentOptions deploymentOptions
        end local 1 // java.lang.String verticleName
        end local 0 // io.vertx.core.impl.HAManager this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0    2     0               this  Lio/vertx/core/impl/HAManager;
            0    2     1       verticleName  Ljava/lang/String;
            0    2     2  deploymentOptions  Lio/vertx/core/DeploymentOptions;
            0    2     3        doneHandler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/String;>;>;
    Signature: (Ljava/lang/String;Lio/vertx/core/DeploymentOptions;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/String;>;>;)V
    MethodParameters:
                   Name  Flags
      verticleName       final
      deploymentOptions  final
      doneHandler        final

  private void checkHADeployments();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // io.vertx.core.impl.HAManager this
         0: .line 425
            aload 0 /* this */
            getfield io.vertx.core.impl.HAManager.attainedQuorum:Z
            ifeq 3
         1: .line 426
            aload 0 /* this */
            invokevirtual io.vertx.core.impl.HAManager.deployHADeployments:()V
         2: .line 427
            goto 7
         3: .line 428
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual io.vertx.core.impl.HAManager.undeployHADeployments:()V
         4: .line 430
            goto 7
      StackMap locals:
      StackMap stack: java.lang.Throwable
         5: astore 1 /* t */
        start local 1 // java.lang.Throwable t
         6: .line 431
            getstatic io.vertx.core.impl.HAManager.log:Lio/vertx/core/logging/Logger;
            ldc "Failed when checking HA deploymentIDs"
            aload 1 /* t */
            invokevirtual io.vertx.core.logging.Logger.error:(Ljava/lang/Object;Ljava/lang/Throwable;)V
        end local 1 // java.lang.Throwable t
         7: .line 433
      StackMap locals:
      StackMap stack:
            return
        end local 0 // io.vertx.core.impl.HAManager this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Lio/vertx/core/impl/HAManager;
            6    7     1     t  Ljava/lang/Throwable;
      Exception table:
        from    to  target  type
           0     4       5  Class java.lang.Throwable

  private void undeployHADeployments();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=6, args_size=1
        start local 0 // io.vertx.core.impl.HAManager this
         0: .line 437
            aload 0 /* this */
            getfield io.vertx.core.impl.HAManager.deploymentManager:Lio/vertx/core/impl/DeploymentManager;
            invokevirtual io.vertx.core.impl.DeploymentManager.deployments:()Ljava/util/Set;
            invokeinterface java.util.Set.iterator:()Ljava/util/Iterator;
            astore 2
            goto 13
      StackMap locals: io.vertx.core.impl.HAManager top java.util.Iterator
      StackMap stack:
         1: aload 2
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.lang.String
            astore 1 /* deploymentID */
        start local 1 // java.lang.String deploymentID
         2: .line 438
            aload 0 /* this */
            getfield io.vertx.core.impl.HAManager.deploymentManager:Lio/vertx/core/impl/DeploymentManager;
            aload 1 /* deploymentID */
            invokevirtual io.vertx.core.impl.DeploymentManager.getDeployment:(Ljava/lang/String;)Lio/vertx/core/impl/Deployment;
            astore 3 /* dep */
        start local 3 // io.vertx.core.impl.Deployment dep
         3: .line 439
            aload 3 /* dep */
            ifnull 13
         4: .line 440
            aload 3 /* dep */
            invokeinterface io.vertx.core.impl.Deployment.deploymentOptions:()Lio/vertx/core/DeploymentOptions;
            invokevirtual io.vertx.core.DeploymentOptions.isHa:()Z
            ifeq 13
         5: .line 441
            aload 0 /* this */
            getfield io.vertx.core.impl.HAManager.vertx:Lio/vertx/core/impl/VertxInternal;
            invokeinterface io.vertx.core.impl.VertxInternal.getContext:()Lio/vertx/core/impl/ContextInternal;
            astore 4 /* ctx */
        start local 4 // io.vertx.core.impl.ContextInternal ctx
         6: .line 443
            aconst_null
            invokestatic io.vertx.core.impl.ContextImpl.setContext:(Lio/vertx/core/impl/ContextImpl;)V
         7: .line 444
            aload 0 /* this */
            getfield io.vertx.core.impl.HAManager.deploymentManager:Lio/vertx/core/impl/DeploymentManager;
            aload 1 /* deploymentID */
            aload 0 /* this */
            aload 1 /* deploymentID */
            aload 3 /* dep */
            invokedynamic handle(Lio/vertx/core/impl/HAManager;Ljava/lang/String;Lio/vertx/core/impl/Deployment;)Lio/vertx/core/Handler;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;)V
                  io/vertx/core/impl/HAManager.lambda$8(Ljava/lang/String;Lio/vertx/core/impl/Deployment;Lio/vertx/core/AsyncResult;)V (7)
                  (Lio/vertx/core/AsyncResult;)V
            invokevirtual io.vertx.core.impl.DeploymentManager.undeployVerticle:(Ljava/lang/String;Lio/vertx/core/Handler;)V
         8: .line 458
            goto 12
      StackMap locals: io.vertx.core.impl.HAManager java.lang.String java.util.Iterator io.vertx.core.impl.Deployment io.vertx.core.impl.ContextInternal
      StackMap stack: java.lang.Throwable
         9: astore 5
        10: .line 459
            aload 4 /* ctx */
            checkcast io.vertx.core.impl.ContextImpl
            invokestatic io.vertx.core.impl.ContextImpl.setContext:(Lio/vertx/core/impl/ContextImpl;)V
        11: .line 460
            aload 5
            athrow
        12: .line 459
      StackMap locals:
      StackMap stack:
            aload 4 /* ctx */
            checkcast io.vertx.core.impl.ContextImpl
            invokestatic io.vertx.core.impl.ContextImpl.setContext:(Lio/vertx/core/impl/ContextImpl;)V
        end local 4 // io.vertx.core.impl.ContextInternal ctx
        end local 3 // io.vertx.core.impl.Deployment dep
        end local 1 // java.lang.String deploymentID
        13: .line 437
      StackMap locals: io.vertx.core.impl.HAManager top java.util.Iterator
      StackMap stack:
            aload 2
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 1
        14: .line 464
            return
        end local 0 // io.vertx.core.impl.HAManager this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   15     0          this  Lio/vertx/core/impl/HAManager;
            2   13     1  deploymentID  Ljava/lang/String;
            3   13     3           dep  Lio/vertx/core/impl/Deployment;
            6   13     4           ctx  Lio/vertx/core/impl/ContextInternal;
      Exception table:
        from    to  target  type
           6     9       9  any

  private void deployHADeployments();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=4, args_size=1
        start local 0 // io.vertx.core.impl.HAManager this
         0: .line 468
            aload 0 /* this */
            getfield io.vertx.core.impl.HAManager.toDeployOnQuorum:Ljava/util/Queue;
            invokeinterface java.util.Queue.size:()I
            istore 1 /* size */
        start local 1 // int size
         1: .line 469
            iload 1 /* size */
            ifeq 10
         2: .line 470
            getstatic io.vertx.core.impl.HAManager.log:Lio/vertx/core/logging/Logger;
            new java.lang.StringBuilder
            dup
            ldc "There are "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            iload 1 /* size */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc " HA deploymentIDs waiting on a quorum. These will now be deployed"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokevirtual io.vertx.core.logging.Logger.info:(Ljava/lang/Object;)V
         3: .line 472
            goto 8
        start local 2 // java.lang.Runnable task
         4: .line 474
      StackMap locals: int java.lang.Runnable
      StackMap stack:
            aload 2 /* task */
            invokeinterface java.lang.Runnable.run:()V
         5: .line 475
            goto 8
      StackMap locals:
      StackMap stack: java.lang.Throwable
         6: astore 3 /* t */
        start local 3 // java.lang.Throwable t
         7: .line 476
            getstatic io.vertx.core.impl.HAManager.log:Lio/vertx/core/logging/Logger;
            ldc "Failed to run redeployment task"
            aload 3 /* t */
            invokevirtual io.vertx.core.logging.Logger.error:(Ljava/lang/Object;Ljava/lang/Throwable;)V
        end local 3 // java.lang.Throwable t
        end local 2 // java.lang.Runnable task
         8: .line 472
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.core.impl.HAManager.toDeployOnQuorum:Ljava/util/Queue;
            invokeinterface java.util.Queue.poll:()Ljava/lang/Object;
            checkcast java.lang.Runnable
            dup
            astore 2 /* task */
        start local 2 // java.lang.Runnable task
         9: ifnonnull 4
        end local 2 // java.lang.Runnable task
        10: .line 480
      StackMap locals:
      StackMap stack:
            return
        end local 1 // int size
        end local 0 // io.vertx.core.impl.HAManager this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   11     0  this  Lio/vertx/core/impl/HAManager;
            1   11     1  size  I
            4    8     2  task  Ljava/lang/Runnable;
            9   10     2  task  Ljava/lang/Runnable;
            7    8     3     t  Ljava/lang/Throwable;
      Exception table:
        from    to  target  type
           4     5       6  Class java.lang.Throwable

  private void checkFailover(java.lang.String, io.vertx.core.json.JsonObject);
    descriptor: (Ljava/lang/String;Lio/vertx/core/json/JsonObject;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=9, args_size=3
        start local 0 // io.vertx.core.impl.HAManager this
        start local 1 // java.lang.String failedNodeID
        start local 2 // io.vertx.core.json.JsonObject theHAInfo
         0: .line 485
            aload 2 /* theHAInfo */
            ldc "verticles"
            invokevirtual io.vertx.core.json.JsonObject.getJsonArray:(Ljava/lang/String;)Lio/vertx/core/json/JsonArray;
            astore 3 /* deployments */
        start local 3 // io.vertx.core.json.JsonArray deployments
         1: .line 486
            aload 2 /* theHAInfo */
            ldc "group"
            invokevirtual io.vertx.core.json.JsonObject.getString:(Ljava/lang/String;)Ljava/lang/String;
            astore 4 /* group */
        start local 4 // java.lang.String group
         2: .line 487
            aload 0 /* this */
            aload 4 /* group */
            aload 1 /* failedNodeID */
            invokevirtual java.lang.String.hashCode:()I
            invokevirtual io.vertx.core.impl.HAManager.chooseHashedNode:(Ljava/lang/String;I)Ljava/lang/String;
            astore 5 /* chosen */
        start local 5 // java.lang.String chosen
         3: .line 488
            aload 5 /* chosen */
            ifnull 17
            aload 5 /* chosen */
            aload 0 /* this */
            getfield io.vertx.core.impl.HAManager.nodeID:Ljava/lang/String;
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 17
         4: .line 489
            aload 3 /* deployments */
            ifnull 11
            aload 3 /* deployments */
            invokevirtual io.vertx.core.json.JsonArray.size:()I
            ifeq 11
         5: .line 490
            getstatic io.vertx.core.impl.HAManager.log:Lio/vertx/core/logging/Logger;
            new java.lang.StringBuilder
            dup
            ldc "node"
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield io.vertx.core.impl.HAManager.nodeID:Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc " says: Node "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 1 /* failedNodeID */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc " has failed. This node will deploy "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 3 /* deployments */
            invokevirtual io.vertx.core.json.JsonArray.size:()I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc " deploymentIDs from that node."
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokevirtual io.vertx.core.logging.Logger.info:(Ljava/lang/Object;)V
         6: .line 491
            aload 3 /* deployments */
            invokevirtual io.vertx.core.json.JsonArray.iterator:()Ljava/util/Iterator;
            astore 7
            goto 10
      StackMap locals: io.vertx.core.impl.HAManager java.lang.String io.vertx.core.json.JsonObject io.vertx.core.json.JsonArray java.lang.String java.lang.String top java.util.Iterator
      StackMap stack:
         7: aload 7
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            astore 6 /* obj */
        start local 6 // java.lang.Object obj
         8: .line 492
            aload 6 /* obj */
            checkcast io.vertx.core.json.JsonObject
            astore 8 /* app */
        start local 8 // io.vertx.core.json.JsonObject app
         9: .line 493
            aload 0 /* this */
            aload 8 /* app */
            invokevirtual io.vertx.core.impl.HAManager.processFailover:(Lio/vertx/core/json/JsonObject;)V
        end local 8 // io.vertx.core.json.JsonObject app
        end local 6 // java.lang.Object obj
        10: .line 491
      StackMap locals:
      StackMap stack:
            aload 7
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 7
        11: .line 497
      StackMap locals: io.vertx.core.impl.HAManager java.lang.String io.vertx.core.json.JsonObject io.vertx.core.json.JsonArray java.lang.String java.lang.String
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.core.impl.HAManager.clusterMap:Ljava/util/Map;
            aload 1 /* failedNodeID */
            invokeinterface java.util.Map.remove:(Ljava/lang/Object;)Ljava/lang/Object;
            pop
        12: .line 498
            aload 0 /* this */
            aload 0 /* this */
            aload 1 /* failedNodeID */
            aload 2 /* theHAInfo */
            invokedynamic run(Lio/vertx/core/impl/HAManager;Ljava/lang/String;Lio/vertx/core/json/JsonObject;)Ljava/lang/Runnable;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  ()V
                  io/vertx/core/impl/HAManager.lambda$10(Ljava/lang/String;Lio/vertx/core/json/JsonObject;)V (7)
                  ()V
            invokevirtual io.vertx.core.impl.HAManager.runOnContextAndWait:(Ljava/lang/Runnable;)V
        end local 5 // java.lang.String chosen
        end local 4 // java.lang.String group
        end local 3 // io.vertx.core.json.JsonArray deployments
        13: .line 504
            goto 17
      StackMap locals: io.vertx.core.impl.HAManager java.lang.String io.vertx.core.json.JsonObject
      StackMap stack: java.lang.Throwable
        14: astore 3 /* t */
        start local 3 // java.lang.Throwable t
        15: .line 505
            getstatic io.vertx.core.impl.HAManager.log:Lio/vertx/core/logging/Logger;
            ldc "Failed to handle failover"
            aload 3 /* t */
            invokevirtual io.vertx.core.logging.Logger.error:(Ljava/lang/Object;Ljava/lang/Throwable;)V
        16: .line 506
            aload 0 /* this */
            aload 0 /* this */
            aload 1 /* failedNodeID */
            aload 2 /* theHAInfo */
            invokedynamic run(Lio/vertx/core/impl/HAManager;Ljava/lang/String;Lio/vertx/core/json/JsonObject;)Ljava/lang/Runnable;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  ()V
                  io/vertx/core/impl/HAManager.lambda$11(Ljava/lang/String;Lio/vertx/core/json/JsonObject;)V (7)
                  ()V
            invokevirtual io.vertx.core.impl.HAManager.runOnContextAndWait:(Ljava/lang/Runnable;)V
        end local 3 // java.lang.Throwable t
        17: .line 512
      StackMap locals:
      StackMap stack:
            return
        end local 2 // io.vertx.core.json.JsonObject theHAInfo
        end local 1 // java.lang.String failedNodeID
        end local 0 // io.vertx.core.impl.HAManager this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   18     0          this  Lio/vertx/core/impl/HAManager;
            0   18     1  failedNodeID  Ljava/lang/String;
            0   18     2     theHAInfo  Lio/vertx/core/json/JsonObject;
            1   13     3   deployments  Lio/vertx/core/json/JsonArray;
            2   13     4         group  Ljava/lang/String;
            3   13     5        chosen  Ljava/lang/String;
            8   10     6           obj  Ljava/lang/Object;
            9   10     8           app  Lio/vertx/core/json/JsonObject;
           15   17     3             t  Ljava/lang/Throwable;
      Exception table:
        from    to  target  type
           0    13      14  Class java.lang.Throwable
    MethodParameters:
              Name  Flags
      failedNodeID  
      theHAInfo     

  private void checkSubs(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // io.vertx.core.impl.HAManager this
        start local 1 // java.lang.String failedNodeID
         0: .line 515
            aload 0 /* this */
            getfield io.vertx.core.impl.HAManager.clusterViewChangedHandler:Ljava/util/function/Consumer;
            ifnonnull 2
         1: .line 516
            return
         2: .line 518
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aconst_null
            aload 1 /* failedNodeID */
            invokevirtual java.lang.String.hashCode:()I
            invokevirtual io.vertx.core.impl.HAManager.chooseHashedNode:(Ljava/lang/String;I)Ljava/lang/String;
            astore 2 /* chosen */
        start local 2 // java.lang.String chosen
         3: .line 519
            aload 2 /* chosen */
            ifnull 5
            aload 2 /* chosen */
            aload 0 /* this */
            getfield io.vertx.core.impl.HAManager.nodeID:Ljava/lang/String;
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 5
         4: .line 520
            aload 0 /* this */
            aload 0 /* this */
            invokedynamic run(Lio/vertx/core/impl/HAManager;)Ljava/lang/Runnable;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  ()V
                  io/vertx/core/impl/HAManager.lambda$12()V (7)
                  ()V
            invokevirtual io.vertx.core.impl.HAManager.runOnContextAndWait:(Ljava/lang/Runnable;)V
         5: .line 522
      StackMap locals: java.lang.String
      StackMap stack:
            return
        end local 2 // java.lang.String chosen
        end local 1 // java.lang.String failedNodeID
        end local 0 // io.vertx.core.impl.HAManager this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    6     0          this  Lio/vertx/core/impl/HAManager;
            0    6     1  failedNodeID  Ljava/lang/String;
            3    6     2        chosen  Ljava/lang/String;
    MethodParameters:
              Name  Flags
      failedNodeID  

  private void runOnContextAndWait(java.lang.Runnable);
    descriptor: (Ljava/lang/Runnable;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // io.vertx.core.impl.HAManager this
        start local 1 // java.lang.Runnable runnable
         0: .line 525
            new java.util.concurrent.CountDownLatch
            dup
            iconst_1
            invokespecial java.util.concurrent.CountDownLatch.<init>:(I)V
            astore 2 /* latch */
        start local 2 // java.util.concurrent.CountDownLatch latch
         1: .line 527
            aload 0 /* this */
            getfield io.vertx.core.impl.HAManager.vertx:Lio/vertx/core/impl/VertxInternal;
            aload 2 /* latch */
            aload 1 /* runnable */
            invokedynamic handle(Ljava/util/concurrent/CountDownLatch;Ljava/lang/Runnable;)Lio/vertx/core/Handler;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;)V
                  io/vertx/core/impl/HAManager.lambda$13(Ljava/util/concurrent/CountDownLatch;Ljava/lang/Runnable;Ljava/lang/Void;)V (6)
                  (Ljava/lang/Void;)V
            invokeinterface io.vertx.core.impl.VertxInternal.runOnContext:(Lio/vertx/core/Handler;)V
         2: .line 535
            aload 2 /* latch */
            ldc 30
            getstatic java.util.concurrent.TimeUnit.SECONDS:Ljava/util/concurrent/TimeUnit;
            invokevirtual java.util.concurrent.CountDownLatch.await:(JLjava/util/concurrent/TimeUnit;)Z
            pop
         3: .line 536
            goto 5
      StackMap locals: io.vertx.core.impl.HAManager java.lang.Runnable java.util.concurrent.CountDownLatch
      StackMap stack: java.lang.InterruptedException
         4: pop
         5: .line 538
      StackMap locals:
      StackMap stack:
            return
        end local 2 // java.util.concurrent.CountDownLatch latch
        end local 1 // java.lang.Runnable runnable
        end local 0 // io.vertx.core.impl.HAManager this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    6     0      this  Lio/vertx/core/impl/HAManager;
            0    6     1  runnable  Ljava/lang/Runnable;
            1    6     2     latch  Ljava/util/concurrent/CountDownLatch;
      Exception table:
        from    to  target  type
           2     3       4  Class java.lang.InterruptedException
    MethodParameters:
          Name  Flags
      runnable  

  private void processFailover(io.vertx.core.json.JsonObject);
    descriptor: (Lio/vertx/core/json/JsonObject;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=6, locals=8, args_size=2
        start local 0 // io.vertx.core.impl.HAManager this
        start local 1 // io.vertx.core.json.JsonObject failedVerticle
         0: .line 542
            aload 0 /* this */
            getfield io.vertx.core.impl.HAManager.failDuringFailover:Z
            ifeq 2
         1: .line 543
            new io.vertx.core.VertxException
            dup
            ldc "Oops!"
            invokespecial io.vertx.core.VertxException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 546
      StackMap locals:
      StackMap stack:
            aload 1 /* failedVerticle */
            ldc "verticle_name"
            invokevirtual io.vertx.core.json.JsonObject.getString:(Ljava/lang/String;)Ljava/lang/String;
            astore 2 /* verticleName */
        start local 2 // java.lang.String verticleName
         3: .line 547
            new java.util.concurrent.CountDownLatch
            dup
            iconst_1
            invokespecial java.util.concurrent.CountDownLatch.<init>:(I)V
            astore 3 /* latch */
        start local 3 // java.util.concurrent.CountDownLatch latch
         4: .line 548
            new java.util.concurrent.atomic.AtomicReference
            dup
            invokespecial java.util.concurrent.atomic.AtomicReference.<init>:()V
            astore 4 /* err */
        start local 4 // java.util.concurrent.atomic.AtomicReference err
         5: .line 550
            aload 0 /* this */
            getfield io.vertx.core.impl.HAManager.vertx:Lio/vertx/core/impl/VertxInternal;
            invokeinterface io.vertx.core.impl.VertxInternal.getContext:()Lio/vertx/core/impl/ContextInternal;
            astore 5 /* ctx */
        start local 5 // io.vertx.core.impl.ContextInternal ctx
         6: .line 551
            aload 5 /* ctx */
            ifnull 8
         7: .line 553
            aconst_null
            invokestatic io.vertx.core.impl.ContextImpl.setContext:(Lio/vertx/core/impl/ContextImpl;)V
         8: .line 555
      StackMap locals: io.vertx.core.impl.HAManager io.vertx.core.json.JsonObject java.lang.String java.util.concurrent.CountDownLatch java.util.concurrent.atomic.AtomicReference io.vertx.core.impl.ContextInternal
      StackMap stack:
            aload 1 /* failedVerticle */
            ldc "options"
            invokevirtual io.vertx.core.json.JsonObject.getJsonObject:(Ljava/lang/String;)Lio/vertx/core/json/JsonObject;
            astore 6 /* options */
        start local 6 // io.vertx.core.json.JsonObject options
         9: .line 557
            aload 0 /* this */
            aload 2 /* verticleName */
            new io.vertx.core.DeploymentOptions
            dup
            aload 6 /* options */
            invokespecial io.vertx.core.DeploymentOptions.<init>:(Lio/vertx/core/json/JsonObject;)V
            aload 2 /* verticleName */
            aload 4 /* err */
            aload 3 /* latch */
            invokedynamic handle(Ljava/lang/String;Ljava/util/concurrent/atomic/AtomicReference;Ljava/util/concurrent/CountDownLatch;)Lio/vertx/core/Handler;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;)V
                  io/vertx/core/impl/HAManager.lambda$14(Ljava/lang/String;Ljava/util/concurrent/atomic/AtomicReference;Ljava/util/concurrent/CountDownLatch;Lio/vertx/core/AsyncResult;)V (6)
                  (Lio/vertx/core/AsyncResult;)V
            invokevirtual io.vertx.core.impl.HAManager.doDeployVerticle:(Ljava/lang/String;Lio/vertx/core/DeploymentOptions;Lio/vertx/core/Handler;)V
        10: .line 570
            goto 15
      StackMap locals: io.vertx.core.impl.HAManager io.vertx.core.json.JsonObject java.lang.String java.util.concurrent.CountDownLatch java.util.concurrent.atomic.AtomicReference io.vertx.core.impl.ContextInternal io.vertx.core.json.JsonObject
      StackMap stack: java.lang.Throwable
        11: astore 7
        12: .line 571
            aload 5 /* ctx */
            ifnull 14
        13: .line 572
            aload 5 /* ctx */
            checkcast io.vertx.core.impl.ContextImpl
            invokestatic io.vertx.core.impl.ContextImpl.setContext:(Lio/vertx/core/impl/ContextImpl;)V
        14: .line 574
      StackMap locals: java.lang.Throwable
      StackMap stack:
            aload 7
            athrow
        15: .line 571
      StackMap locals:
      StackMap stack:
            aload 5 /* ctx */
            ifnull 17
        16: .line 572
            aload 5 /* ctx */
            checkcast io.vertx.core.impl.ContextImpl
            invokestatic io.vertx.core.impl.ContextImpl.setContext:(Lio/vertx/core/impl/ContextImpl;)V
        17: .line 576
      StackMap locals:
      StackMap stack:
            aload 3 /* latch */
            ldc 120
            getstatic java.util.concurrent.TimeUnit.SECONDS:Ljava/util/concurrent/TimeUnit;
            invokevirtual java.util.concurrent.CountDownLatch.await:(JLjava/util/concurrent/TimeUnit;)Z
            ifne 21
        18: .line 577
            new io.vertx.core.VertxException
            dup
            ldc "Timed out waiting for redeploy on failover"
            invokespecial io.vertx.core.VertxException.<init>:(Ljava/lang/String;)V
            athrow
        19: .line 579
      StackMap locals:
      StackMap stack: java.lang.InterruptedException
            astore 7 /* e */
        start local 7 // java.lang.InterruptedException e
        20: .line 580
            new java.lang.IllegalStateException
            dup
            aload 7 /* e */
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/Throwable;)V
            athrow
        end local 7 // java.lang.InterruptedException e
        21: .line 582
      StackMap locals:
      StackMap stack:
            return
        end local 6 // io.vertx.core.json.JsonObject options
        end local 5 // io.vertx.core.impl.ContextInternal ctx
        end local 4 // java.util.concurrent.atomic.AtomicReference err
        end local 3 // java.util.concurrent.CountDownLatch latch
        end local 2 // java.lang.String verticleName
        end local 1 // io.vertx.core.json.JsonObject failedVerticle
        end local 0 // io.vertx.core.impl.HAManager this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0   22     0            this  Lio/vertx/core/impl/HAManager;
            0   22     1  failedVerticle  Lio/vertx/core/json/JsonObject;
            3   22     2    verticleName  Ljava/lang/String;
            4   22     3           latch  Ljava/util/concurrent/CountDownLatch;
            5   22     4             err  Ljava/util/concurrent/atomic/AtomicReference<Ljava/lang/Throwable;>;
            6   22     5             ctx  Lio/vertx/core/impl/ContextInternal;
            9   22     6         options  Lio/vertx/core/json/JsonObject;
           20   21     7               e  Ljava/lang/InterruptedException;
      Exception table:
        from    to  target  type
           9    11      11  any
          17    19      19  Class java.lang.InterruptedException
    MethodParameters:
                Name  Flags
      failedVerticle  

  private java.lang.String chooseHashedNode(java.lang.String, int);
    descriptor: (Ljava/lang/String;I)Ljava/lang/String;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=10, args_size=3
        start local 0 // io.vertx.core.impl.HAManager this
        start local 1 // java.lang.String group
        start local 2 // int hashCode
         0: .line 586
            aload 0 /* this */
            getfield io.vertx.core.impl.HAManager.clusterManager:Lio/vertx/core/spi/cluster/ClusterManager;
            invokeinterface io.vertx.core.spi.cluster.ClusterManager.getNodes:()Ljava/util/List;
            astore 3 /* nodes */
        start local 3 // java.util.List nodes
         1: .line 587
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            astore 4 /* matchingMembers */
        start local 4 // java.util.ArrayList matchingMembers
         2: .line 588
            aload 3 /* nodes */
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 6
            goto 10
      StackMap locals: io.vertx.core.impl.HAManager java.lang.String int java.util.List java.util.ArrayList top java.util.Iterator
      StackMap stack:
         3: aload 6
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.lang.String
            astore 5 /* node */
        start local 5 // java.lang.String node
         4: .line 589
            aload 0 /* this */
            getfield io.vertx.core.impl.HAManager.clusterMap:Ljava/util/Map;
            aload 5 /* node */
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast java.lang.String
            astore 7 /* sclusterInfo */
        start local 7 // java.lang.String sclusterInfo
         5: .line 590
            aload 7 /* sclusterInfo */
            ifnull 10
         6: .line 591
            new io.vertx.core.json.JsonObject
            dup
            aload 7 /* sclusterInfo */
            invokespecial io.vertx.core.json.JsonObject.<init>:(Ljava/lang/String;)V
            astore 8 /* clusterInfo */
        start local 8 // io.vertx.core.json.JsonObject clusterInfo
         7: .line 592
            aload 8 /* clusterInfo */
            ldc "group"
            invokevirtual io.vertx.core.json.JsonObject.getString:(Ljava/lang/String;)Ljava/lang/String;
            astore 9 /* memberGroup */
        start local 9 // java.lang.String memberGroup
         8: .line 593
            aload 1 /* group */
            ifnull 9
            aload 1 /* group */
            aload 9 /* memberGroup */
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 10
         9: .line 594
      StackMap locals: io.vertx.core.impl.HAManager java.lang.String int java.util.List java.util.ArrayList java.lang.String java.util.Iterator java.lang.String io.vertx.core.json.JsonObject java.lang.String
      StackMap stack:
            aload 4 /* matchingMembers */
            aload 5 /* node */
            invokevirtual java.util.ArrayList.add:(Ljava/lang/Object;)Z
            pop
        end local 9 // java.lang.String memberGroup
        end local 8 // io.vertx.core.json.JsonObject clusterInfo
        end local 7 // java.lang.String sclusterInfo
        end local 5 // java.lang.String node
        10: .line 588
      StackMap locals: io.vertx.core.impl.HAManager java.lang.String int java.util.List java.util.ArrayList top java.util.Iterator
      StackMap stack:
            aload 6
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 3
        11: .line 598
            aload 4 /* matchingMembers */
            invokevirtual java.util.ArrayList.isEmpty:()Z
            ifne 15
        12: .line 600
            iload 2 /* hashCode */
            i2l
            ldc 2147483647
            ladd
            lstore 5 /* absHash */
        start local 5 // long absHash
        13: .line 601
            lload 5 /* absHash */
            aload 4 /* matchingMembers */
            invokevirtual java.util.ArrayList.size:()I
            i2l
            lrem
            lstore 7 /* lpos */
        start local 7 // long lpos
        14: .line 602
            aload 4 /* matchingMembers */
            lload 7 /* lpos */
            l2i
            invokevirtual java.util.ArrayList.get:(I)Ljava/lang/Object;
            checkcast java.lang.String
            areturn
        end local 7 // long lpos
        end local 5 // long absHash
        15: .line 604
      StackMap locals: io.vertx.core.impl.HAManager java.lang.String int java.util.List java.util.ArrayList
      StackMap stack:
            aconst_null
            areturn
        end local 4 // java.util.ArrayList matchingMembers
        end local 3 // java.util.List nodes
        end local 2 // int hashCode
        end local 1 // java.lang.String group
        end local 0 // io.vertx.core.impl.HAManager this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0   16     0             this  Lio/vertx/core/impl/HAManager;
            0   16     1            group  Ljava/lang/String;
            0   16     2         hashCode  I
            1   16     3            nodes  Ljava/util/List<Ljava/lang/String;>;
            2   16     4  matchingMembers  Ljava/util/ArrayList<Ljava/lang/String;>;
            4   10     5             node  Ljava/lang/String;
            5   10     7     sclusterInfo  Ljava/lang/String;
            7   10     8      clusterInfo  Lio/vertx/core/json/JsonObject;
            8   10     9      memberGroup  Ljava/lang/String;
           13   15     5          absHash  J
           14   15     7             lpos  J
    MethodParameters:
          Name  Flags
      group     
      hashCode  

  private void lambda$0(java.lang.Long);
    descriptor: (Ljava/lang/Long;)V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // io.vertx.core.impl.HAManager this
        start local 1 // java.lang.Long tid
         0: .line 153
            aload 0 /* this */
            invokevirtual io.vertx.core.impl.HAManager.checkHADeployments:()V
            return
        end local 1 // java.lang.Long tid
        end local 0 // io.vertx.core.impl.HAManager this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/impl/HAManager;
            0    1     1   tid  Ljava/lang/Long;

  private static void lambda$1(java.util.concurrent.CountDownLatch, io.vertx.core.AsyncResult);
    descriptor: (Ljava/util/concurrent/CountDownLatch;Lio/vertx/core/AsyncResult;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=3, locals=2, args_size=2
        start local 1 // io.vertx.core.AsyncResult ar
         0: .line 213
            aload 1 /* ar */
            invokeinterface io.vertx.core.AsyncResult.failed:()Z
            ifeq 2
         1: .line 214
            getstatic io.vertx.core.impl.HAManager.log:Lio/vertx/core/logging/Logger;
            ldc "Failed to leave cluster"
            aload 1 /* ar */
            invokeinterface io.vertx.core.AsyncResult.cause:()Ljava/lang/Throwable;
            invokevirtual io.vertx.core.logging.Logger.error:(Ljava/lang/Object;Ljava/lang/Throwable;)V
         2: .line 216
      StackMap locals:
      StackMap stack:
            aload 0
            invokevirtual java.util.concurrent.CountDownLatch.countDown:()V
         3: .line 217
            return
        end local 1 // io.vertx.core.AsyncResult ar
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     1    ar  Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;

  private void lambda$2(java.lang.String, io.vertx.core.DeploymentOptions, io.vertx.core.Handler, io.vertx.core.AsyncResult);
    descriptor: (Ljava/lang/String;Lio/vertx/core/DeploymentOptions;Lio/vertx/core/Handler;Lio/vertx/core/AsyncResult;)V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=5, locals=5, args_size=5
        start local 0 // io.vertx.core.impl.HAManager this
        start local 4 // io.vertx.core.AsyncResult ar1
         0: .line 268
            aload 0 /* this */
            getfield io.vertx.core.impl.HAManager.vertx:Lio/vertx/core/impl/VertxInternal;
            aload 0 /* this */
            aload 4 /* ar1 */
            aload 1
            aload 2
            invokedynamic handle(Lio/vertx/core/impl/HAManager;Lio/vertx/core/AsyncResult;Ljava/lang/String;Lio/vertx/core/DeploymentOptions;)Lio/vertx/core/Handler;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;)V
                  io/vertx/core/impl/HAManager.lambda$3(Lio/vertx/core/AsyncResult;Ljava/lang/String;Lio/vertx/core/DeploymentOptions;Lio/vertx/core/Promise;)V (7)
                  (Lio/vertx/core/Promise;)V
         1: .line 277
            iconst_0
            aload 3
            invokedynamic handle(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/core/impl/HAManager.lambda$4(Lio/vertx/core/Handler;Lio/vertx/core/AsyncResult;)V (6)
                  (Lio/vertx/core/AsyncResult;)V
         2: .line 268
            invokeinterface io.vertx.core.impl.VertxInternal.executeBlocking:(Lio/vertx/core/Handler;ZLio/vertx/core/Handler;)V
         3: .line 284
            return
        end local 4 // io.vertx.core.AsyncResult ar1
        end local 0 // io.vertx.core.impl.HAManager this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lio/vertx/core/impl/HAManager;
            0    4     4   ar1  Lio/vertx/core/AsyncResult<Ljava/lang/String;>;

  private void lambda$5(long, java.lang.String, java.lang.Long);
    descriptor: (JLjava/lang/String;Ljava/lang/Long;)V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=5, locals=5, args_size=4
        start local 0 // io.vertx.core.impl.HAManager this
        start local 4 // java.lang.Long tid
         0: .line 346
            aload 0 /* this */
            getfield io.vertx.core.impl.HAManager.vertx:Lio/vertx/core/impl/VertxInternal;
            aload 0 /* this */
            lload 1
            aload 3
            invokedynamic handle(Lio/vertx/core/impl/HAManager;JLjava/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/core/impl/HAManager.lambda$6(JLjava/lang/String;Lio/vertx/core/Promise;)V (7)
                  (Lio/vertx/core/Promise;)V
         1: .line 360
            aconst_null
         2: .line 346
            invokeinterface io.vertx.core.impl.VertxInternal.executeBlockingInternal:(Lio/vertx/core/Handler;Lio/vertx/core/Handler;)V
         3: .line 361
            return
        end local 4 // java.lang.Long tid
        end local 0 // io.vertx.core.impl.HAManager this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lio/vertx/core/impl/HAManager;
            0    4     4   tid  Ljava/lang/Long;

  private void lambda$7(java.lang.String, io.vertx.core.DeploymentOptions, io.vertx.core.Handler);
    descriptor: (Ljava/lang/String;Lio/vertx/core/DeploymentOptions;Lio/vertx/core/Handler;)V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=4, locals=6, args_size=4
        start local 0 // io.vertx.core.impl.HAManager this
         0: .line 413
            aload 0 /* this */
            getfield io.vertx.core.impl.HAManager.vertx:Lio/vertx/core/impl/VertxInternal;
            invokeinterface io.vertx.core.impl.VertxInternal.getContext:()Lio/vertx/core/impl/ContextInternal;
            astore 4 /* ctx */
        start local 4 // io.vertx.core.impl.ContextInternal ctx
         1: .line 415
            aconst_null
            invokestatic io.vertx.core.impl.ContextImpl.setContext:(Lio/vertx/core/impl/ContextImpl;)V
         2: .line 416
            aload 0 /* this */
            aload 1
            aload 2
            aload 3
            invokevirtual io.vertx.core.impl.HAManager.deployVerticle:(Ljava/lang/String;Lio/vertx/core/DeploymentOptions;Lio/vertx/core/Handler;)V
         3: .line 417
            goto 7
      StackMap locals: io.vertx.core.impl.HAManager java.lang.String io.vertx.core.DeploymentOptions io.vertx.core.Handler io.vertx.core.impl.ContextInternal
      StackMap stack: java.lang.Throwable
         4: astore 5
         5: .line 418
            aload 4 /* ctx */
            checkcast io.vertx.core.impl.ContextImpl
            invokestatic io.vertx.core.impl.ContextImpl.setContext:(Lio/vertx/core/impl/ContextImpl;)V
         6: .line 419
            aload 5
            athrow
         7: .line 418
      StackMap locals:
      StackMap stack:
            aload 4 /* ctx */
            checkcast io.vertx.core.impl.ContextImpl
            invokestatic io.vertx.core.impl.ContextImpl.setContext:(Lio/vertx/core/impl/ContextImpl;)V
        end local 4 // io.vertx.core.impl.ContextInternal ctx
         8: .line 420
            return
        end local 0 // io.vertx.core.impl.HAManager this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0  this  Lio/vertx/core/impl/HAManager;
            1    8     4   ctx  Lio/vertx/core/impl/ContextInternal;
      Exception table:
        from    to  target  type
           1     4       4  any

  private void lambda$8(java.lang.String, io.vertx.core.impl.Deployment, io.vertx.core.AsyncResult);
    descriptor: (Ljava/lang/String;Lio/vertx/core/impl/Deployment;Lio/vertx/core/AsyncResult;)V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // io.vertx.core.impl.HAManager this
        start local 3 // io.vertx.core.AsyncResult result
         0: .line 445
            aload 3 /* result */
            invokeinterface io.vertx.core.AsyncResult.succeeded:()Z
            ifeq 4
         1: .line 446
            getstatic io.vertx.core.impl.HAManager.log:Lio/vertx/core/logging/Logger;
            new java.lang.StringBuilder
            dup
            ldc "Successfully undeployed HA deployment "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 1
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc "-"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 2
            invokeinterface io.vertx.core.impl.Deployment.verticleIdentifier:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc " as there is no quorum"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokevirtual io.vertx.core.logging.Logger.info:(Ljava/lang/Object;)V
         2: .line 447
            aload 0 /* this */
            aload 2
            invokeinterface io.vertx.core.impl.Deployment.verticleIdentifier:()Ljava/lang/String;
            aload 2
            invokeinterface io.vertx.core.impl.Deployment.deploymentOptions:()Lio/vertx/core/DeploymentOptions;
            aload 2
            invokedynamic handle(Lio/vertx/core/impl/Deployment;)Lio/vertx/core/Handler;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;)V
                  io/vertx/core/impl/HAManager.lambda$9(Lio/vertx/core/impl/Deployment;Lio/vertx/core/AsyncResult;)V (6)
                  (Lio/vertx/core/AsyncResult;)V
            invokevirtual io.vertx.core.impl.HAManager.addToHADeployList:(Ljava/lang/String;Lio/vertx/core/DeploymentOptions;Lio/vertx/core/Handler;)V
         3: .line 454
            goto 5
         4: .line 455
      StackMap locals:
      StackMap stack:
            getstatic io.vertx.core.impl.HAManager.log:Lio/vertx/core/logging/Logger;
            ldc "Failed to undeploy deployment on lost quorum"
            aload 3 /* result */
            invokeinterface io.vertx.core.AsyncResult.cause:()Ljava/lang/Throwable;
            invokevirtual io.vertx.core.logging.Logger.error:(Ljava/lang/Object;Ljava/lang/Throwable;)V
         5: .line 457
      StackMap locals:
      StackMap stack:
            return
        end local 3 // io.vertx.core.AsyncResult result
        end local 0 // io.vertx.core.impl.HAManager this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    6     0    this  Lio/vertx/core/impl/HAManager;
            0    6     3  result  Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;

  private void lambda$10(java.lang.String, io.vertx.core.json.JsonObject);
    descriptor: (Ljava/lang/String;Lio/vertx/core/json/JsonObject;)V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // io.vertx.core.impl.HAManager this
         0: .line 499
            aload 0 /* this */
            getfield io.vertx.core.impl.HAManager.failoverCompleteHandler:Lio/vertx/core/impl/FailoverCompleteHandler;
            ifnull 2
         1: .line 500
            aload 0 /* this */
            getfield io.vertx.core.impl.HAManager.failoverCompleteHandler:Lio/vertx/core/impl/FailoverCompleteHandler;
            aload 1
            aload 2
            iconst_1
            invokeinterface io.vertx.core.impl.FailoverCompleteHandler.handle:(Ljava/lang/String;Lio/vertx/core/json/JsonObject;Z)V
         2: .line 502
      StackMap locals:
      StackMap stack:
            return
        end local 0 // io.vertx.core.impl.HAManager this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/vertx/core/impl/HAManager;

  private void lambda$11(java.lang.String, io.vertx.core.json.JsonObject);
    descriptor: (Ljava/lang/String;Lio/vertx/core/json/JsonObject;)V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // io.vertx.core.impl.HAManager this
         0: .line 507
            aload 0 /* this */
            getfield io.vertx.core.impl.HAManager.failoverCompleteHandler:Lio/vertx/core/impl/FailoverCompleteHandler;
            ifnull 2
         1: .line 508
            aload 0 /* this */
            getfield io.vertx.core.impl.HAManager.failoverCompleteHandler:Lio/vertx/core/impl/FailoverCompleteHandler;
            aload 1
            aload 2
            iconst_0
            invokeinterface io.vertx.core.impl.FailoverCompleteHandler.handle:(Ljava/lang/String;Lio/vertx/core/json/JsonObject;Z)V
         2: .line 510
      StackMap locals:
      StackMap stack:
            return
        end local 0 // io.vertx.core.impl.HAManager this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/vertx/core/impl/HAManager;

  private void lambda$12();
    descriptor: ()V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // io.vertx.core.impl.HAManager this
         0: .line 520
            aload 0 /* this */
            getfield io.vertx.core.impl.HAManager.clusterViewChangedHandler:Ljava/util/function/Consumer;
            new java.util.HashSet
            dup
            aload 0 /* this */
            getfield io.vertx.core.impl.HAManager.clusterManager:Lio/vertx/core/spi/cluster/ClusterManager;
            invokeinterface io.vertx.core.spi.cluster.ClusterManager.getNodes:()Ljava/util/List;
            invokespecial java.util.HashSet.<init>:(Ljava/util/Collection;)V
            invokeinterface java.util.function.Consumer.accept:(Ljava/lang/Object;)V
            return
        end local 0 // io.vertx.core.impl.HAManager this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/impl/HAManager;

  private static void lambda$13(java.util.concurrent.CountDownLatch, java.lang.Runnable, java.lang.Void);
    descriptor: (Ljava/util/concurrent/CountDownLatch;Ljava/lang/Runnable;Ljava/lang/Void;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=1, locals=4, args_size=3
        start local 2 // java.lang.Void v
         0: .line 529
            aload 1
            invokeinterface java.lang.Runnable.run:()V
         1: .line 530
            goto 5
      StackMap locals:
      StackMap stack: java.lang.Throwable
         2: astore 3
         3: .line 531
            aload 0
            invokevirtual java.util.concurrent.CountDownLatch.countDown:()V
         4: .line 532
            aload 3
            athrow
         5: .line 531
      StackMap locals:
      StackMap stack:
            aload 0
            invokevirtual java.util.concurrent.CountDownLatch.countDown:()V
         6: .line 533
            return
        end local 2 // java.lang.Void v
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     2     v  Ljava/lang/Void;
      Exception table:
        from    to  target  type
           0     2       2  any

  private static void lambda$14(java.lang.String, java.util.concurrent.atomic.AtomicReference, java.util.concurrent.CountDownLatch, io.vertx.core.AsyncResult);
    descriptor: (Ljava/lang/String;Ljava/util/concurrent/atomic/AtomicReference;Ljava/util/concurrent/CountDownLatch;Lio/vertx/core/AsyncResult;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=4, locals=5, args_size=4
        start local 3 // io.vertx.core.AsyncResult result
         0: .line 558
            aload 3 /* result */
            invokeinterface io.vertx.core.AsyncResult.succeeded:()Z
            ifeq 3
         1: .line 559
            getstatic io.vertx.core.impl.HAManager.log:Lio/vertx/core/logging/Logger;
            new java.lang.StringBuilder
            dup
            ldc "Successfully redeployed verticle "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc " after failover"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokevirtual io.vertx.core.logging.Logger.info:(Ljava/lang/Object;)V
         2: .line 560
            goto 5
         3: .line 561
      StackMap locals:
      StackMap stack:
            getstatic io.vertx.core.impl.HAManager.log:Lio/vertx/core/logging/Logger;
            ldc "Failed to redeploy verticle after failover"
            aload 3 /* result */
            invokeinterface io.vertx.core.AsyncResult.cause:()Ljava/lang/Throwable;
            invokevirtual io.vertx.core.logging.Logger.error:(Ljava/lang/Object;Ljava/lang/Throwable;)V
         4: .line 562
            aload 1
            aload 3 /* result */
            invokeinterface io.vertx.core.AsyncResult.cause:()Ljava/lang/Throwable;
            invokevirtual java.util.concurrent.atomic.AtomicReference.set:(Ljava/lang/Object;)V
         5: .line 564
      StackMap locals:
      StackMap stack:
            aload 2
            invokevirtual java.util.concurrent.CountDownLatch.countDown:()V
         6: .line 565
            aload 1
            invokevirtual java.util.concurrent.atomic.AtomicReference.get:()Ljava/lang/Object;
            checkcast java.lang.Throwable
            astore 4 /* t */
        start local 4 // java.lang.Throwable t
         7: .line 566
            aload 4 /* t */
            ifnull 9
         8: .line 567
            new io.vertx.core.VertxException
            dup
            aload 4 /* t */
            invokespecial io.vertx.core.VertxException.<init>:(Ljava/lang/Throwable;)V
            athrow
        end local 4 // java.lang.Throwable t
         9: .line 569
      StackMap locals:
      StackMap stack:
            return
        end local 3 // io.vertx.core.AsyncResult result
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   10     3  result  Lio/vertx/core/AsyncResult<Ljava/lang/String;>;
            7    9     4       t  Ljava/lang/Throwable;

  private void lambda$3(io.vertx.core.AsyncResult, java.lang.String, io.vertx.core.DeploymentOptions, io.vertx.core.Promise);
    descriptor: (Lio/vertx/core/AsyncResult;Ljava/lang/String;Lio/vertx/core/DeploymentOptions;Lio/vertx/core/Promise;)V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=4, locals=6, args_size=5
        start local 0 // io.vertx.core.impl.HAManager this
        start local 4 // io.vertx.core.Promise fut
         0: .line 269
            aload 1
            invokeinterface io.vertx.core.AsyncResult.succeeded:()Z
            ifeq 5
         1: .line 271
            aload 1
            invokeinterface io.vertx.core.AsyncResult.result:()Ljava/lang/Object;
            checkcast java.lang.String
            astore 5 /* deploymentID */
        start local 5 // java.lang.String deploymentID
         2: .line 272
            aload 0 /* this */
            aload 5 /* deploymentID */
            aload 2
            aload 3
            invokevirtual io.vertx.core.impl.HAManager.addToHA:(Ljava/lang/String;Ljava/lang/String;Lio/vertx/core/DeploymentOptions;)V
         3: .line 273
            aload 4 /* fut */
            aload 5 /* deploymentID */
            invokeinterface io.vertx.core.Promise.complete:(Ljava/lang/Object;)V
        end local 5 // java.lang.String deploymentID
         4: .line 274
            goto 6
         5: .line 275
      StackMap locals:
      StackMap stack:
            aload 4 /* fut */
            aload 1
            invokeinterface io.vertx.core.AsyncResult.cause:()Ljava/lang/Throwable;
            invokeinterface io.vertx.core.Promise.fail:(Ljava/lang/Throwable;)V
         6: .line 277
      StackMap locals:
      StackMap stack:
            return
        end local 4 // io.vertx.core.Promise fut
        end local 0 // io.vertx.core.impl.HAManager this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    7     0          this  Lio/vertx/core/impl/HAManager;
            0    7     4           fut  Lio/vertx/core/Promise<Ljava/lang/String;>;
            2    4     5  deploymentID  Ljava/lang/String;

  private static void lambda$4(io.vertx.core.Handler, io.vertx.core.AsyncResult);
    descriptor: (Lio/vertx/core/Handler;Lio/vertx/core/AsyncResult;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=3, locals=2, args_size=2
        start local 1 // io.vertx.core.AsyncResult ar2
         0: .line 278
            aload 0
            ifnull 3
         1: .line 279
            aload 0
            aload 1 /* ar2 */
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
         2: .line 280
            goto 5
      StackMap locals:
      StackMap stack:
         3: aload 1 /* ar2 */
            invokeinterface io.vertx.core.AsyncResult.failed:()Z
            ifeq 5
         4: .line 281
            getstatic io.vertx.core.impl.HAManager.log:Lio/vertx/core/logging/Logger;
            ldc "Failed to deploy verticle"
            aload 1 /* ar2 */
            invokeinterface io.vertx.core.AsyncResult.cause:()Ljava/lang/Throwable;
            invokevirtual io.vertx.core.logging.Logger.error:(Ljava/lang/Object;Ljava/lang/Throwable;)V
         5: .line 283
      StackMap locals:
      StackMap stack:
            return
        end local 1 // io.vertx.core.AsyncResult ar2
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     1   ar2  Lio/vertx/core/AsyncResult<Ljava/lang/String;>;

  private void lambda$6(long, java.lang.String, io.vertx.core.Promise);
    descriptor: (JLjava/lang/String;Lio/vertx/core/Promise;)V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=4, locals=7, args_size=4
        start local 0 // io.vertx.core.impl.HAManager this
        start local 4 // io.vertx.core.Promise fut
         0: .line 347
            invokestatic java.lang.System.currentTimeMillis:()J
            lload 1
            lsub
            ldc 10000
            lcmp
            ifle 3
         1: .line 348
            getstatic io.vertx.core.impl.HAManager.log:Lio/vertx/core/logging/Logger;
            ldc "Timed out waiting for group information to appear"
            invokevirtual io.vertx.core.logging.Logger.warn:(Ljava/lang/Object;)V
         2: .line 349
            goto 12
      StackMap locals:
      StackMap stack:
         3: aload 0 /* this */
            getfield io.vertx.core.impl.HAManager.stopped:Z
            ifne 12
         4: .line 350
            aload 0 /* this */
            getfield io.vertx.core.impl.HAManager.vertx:Lio/vertx/core/impl/VertxInternal;
            invokeinterface io.vertx.core.impl.VertxInternal.getContext:()Lio/vertx/core/impl/ContextInternal;
            astore 5 /* context */
        start local 5 // io.vertx.core.impl.ContextInternal context
         5: .line 353
            aconst_null
            invokestatic io.vertx.core.impl.ContextImpl.setContext:(Lio/vertx/core/impl/ContextImpl;)V
         6: .line 354
            aload 0 /* this */
            aload 3
            lload 1
            invokevirtual io.vertx.core.impl.HAManager.checkQuorumWhenAdded:(Ljava/lang/String;J)V
         7: .line 355
            goto 11
      StackMap locals: io.vertx.core.impl.HAManager long java.lang.String io.vertx.core.Promise io.vertx.core.impl.ContextInternal
      StackMap stack: java.lang.Throwable
         8: astore 6
         9: .line 356
            aload 5 /* context */
            checkcast io.vertx.core.impl.ContextImpl
            invokestatic io.vertx.core.impl.ContextImpl.setContext:(Lio/vertx/core/impl/ContextImpl;)V
        10: .line 357
            aload 6
            athrow
        11: .line 356
      StackMap locals:
      StackMap stack:
            aload 5 /* context */
            checkcast io.vertx.core.impl.ContextImpl
            invokestatic io.vertx.core.impl.ContextImpl.setContext:(Lio/vertx/core/impl/ContextImpl;)V
        end local 5 // io.vertx.core.impl.ContextInternal context
        12: .line 359
      StackMap locals:
      StackMap stack:
            aload 4 /* fut */
            invokeinterface io.vertx.core.Promise.complete:()V
        13: .line 360
            return
        end local 4 // io.vertx.core.Promise fut
        end local 0 // io.vertx.core.impl.HAManager this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   14     0     this  Lio/vertx/core/impl/HAManager;
            0   14     4      fut  Lio/vertx/core/Promise<Ljava/lang/Object;>;
            5   12     5  context  Lio/vertx/core/impl/ContextInternal;
      Exception table:
        from    to  target  type
           5     8       8  any

  private static void lambda$9(io.vertx.core.impl.Deployment, io.vertx.core.AsyncResult);
    descriptor: (Lio/vertx/core/impl/Deployment;Lio/vertx/core/AsyncResult;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=4, locals=2, args_size=2
        start local 1 // io.vertx.core.AsyncResult result1
         0: .line 448
            aload 1 /* result1 */
            invokeinterface io.vertx.core.AsyncResult.succeeded:()Z
            ifeq 3
         1: .line 449
            getstatic io.vertx.core.impl.HAManager.log:Lio/vertx/core/logging/Logger;
            new java.lang.StringBuilder
            dup
            ldc "Successfully redeployed verticle "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0
            invokeinterface io.vertx.core.impl.Deployment.verticleIdentifier:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc " after quorum was re-attained"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokevirtual io.vertx.core.logging.Logger.info:(Ljava/lang/Object;)V
         2: .line 450
            goto 4
         3: .line 451
      StackMap locals:
      StackMap stack:
            getstatic io.vertx.core.impl.HAManager.log:Lio/vertx/core/logging/Logger;
            new java.lang.StringBuilder
            dup
            ldc "Failed to redeploy verticle "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0
            invokeinterface io.vertx.core.impl.Deployment.verticleIdentifier:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc " after quorum was re-attained"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            aload 1 /* result1 */
            invokeinterface io.vertx.core.AsyncResult.cause:()Ljava/lang/Throwable;
            invokevirtual io.vertx.core.logging.Logger.error:(Ljava/lang/Object;Ljava/lang/Throwable;)V
         4: .line 453
      StackMap locals:
      StackMap stack:
            return
        end local 1 // io.vertx.core.AsyncResult result1
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    5     1  result1  Lio/vertx/core/AsyncResult<Ljava/lang/String;>;
}
SourceFile: "HAManager.java"
NestMembers:
  io.vertx.core.impl.HAManager$1
InnerClasses:
  io.vertx.core.impl.HAManager$1
  public final Lookup = java.lang.invoke.MethodHandles$Lookup of java.lang.invoke.MethodHandles
  public abstract Entry = java.util.Map$Entry of java.util.Map