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.impl.logging.Logger log;
    descriptor: Lio/vertx/core/impl/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.impl.VerticleManager verticleFactoryManager;
    descriptor: Lio/vertx/core/impl/VerticleManager;
    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 long checkQuorumTimerID;
    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 96
            ldc Lio/vertx/core/impl/HAManager;
            invokestatic io.vertx.core.impl.logging.LoggerFactory.getLogger:(Ljava/lang/Class;)Lio/vertx/core/impl/logging/Logger;
            putstatic io.vertx.core.impl.HAManager.log:Lio/vertx/core/impl/logging/Logger;
         1: .line 98
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>(io.vertx.core.impl.VertxInternal, io.vertx.core.impl.DeploymentManager, io.vertx.core.impl.VerticleManager, 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/impl/VerticleManager;Lio/vertx/core/spi/cluster/ClusterManager;Ljava/util/Map;ILjava/lang/String;Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=9, args_size=9
        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.impl.VerticleManager verticleFactoryManager
        start local 4 // io.vertx.core.spi.cluster.ClusterManager clusterManager
        start local 5 // java.util.Map clusterMap
        start local 6 // int quorumSize
        start local 7 // java.lang.String group
        start local 8 // boolean enabled
         0: .line 121
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 109
            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 113
            aload 0 /* this */
            ldc -1
            putfield io.vertx.core.impl.HAManager.checkQuorumTimerID:J
         3: .line 123
            aload 0 /* this */
            aload 1 /* vertx */
            putfield io.vertx.core.impl.HAManager.vertx:Lio/vertx/core/impl/VertxInternal;
         4: .line 124
            aload 0 /* this */
            aload 2 /* deploymentManager */
            putfield io.vertx.core.impl.HAManager.deploymentManager:Lio/vertx/core/impl/DeploymentManager;
         5: .line 125
            aload 0 /* this */
            aload 3 /* verticleFactoryManager */
            putfield io.vertx.core.impl.HAManager.verticleFactoryManager:Lio/vertx/core/impl/VerticleManager;
         6: .line 126
            aload 0 /* this */
            aload 4 /* clusterManager */
            putfield io.vertx.core.impl.HAManager.clusterManager:Lio/vertx/core/spi/cluster/ClusterManager;
         7: .line 127
            aload 0 /* this */
            aload 5 /* clusterMap */
            putfield io.vertx.core.impl.HAManager.clusterMap:Ljava/util/Map;
         8: .line 128
            aload 0 /* this */
            iload 8 /* enabled */
            ifeq 9
            iload 6 /* quorumSize */
            goto 10
      StackMap locals: io.vertx.core.impl.HAManager io.vertx.core.impl.VertxInternal io.vertx.core.impl.DeploymentManager io.vertx.core.impl.VerticleManager io.vertx.core.spi.cluster.ClusterManager java.util.Map int java.lang.String int
      StackMap stack: io.vertx.core.impl.HAManager
         9: iconst_0
      StackMap locals: io.vertx.core.impl.HAManager io.vertx.core.impl.VertxInternal io.vertx.core.impl.DeploymentManager io.vertx.core.impl.VerticleManager io.vertx.core.spi.cluster.ClusterManager java.util.Map int java.lang.String int
      StackMap stack: io.vertx.core.impl.HAManager int
        10: putfield io.vertx.core.impl.HAManager.quorumSize:I
        11: .line 129
            aload 0 /* this */
            iload 8 /* enabled */
            ifeq 12
            aload 7 /* group */
            goto 13
      StackMap locals:
      StackMap stack: io.vertx.core.impl.HAManager
        12: ldc "__DISABLED__"
      StackMap locals: io.vertx.core.impl.HAManager io.vertx.core.impl.VertxInternal io.vertx.core.impl.DeploymentManager io.vertx.core.impl.VerticleManager io.vertx.core.spi.cluster.ClusterManager java.util.Map int java.lang.String int
      StackMap stack: io.vertx.core.impl.HAManager java.lang.String
        13: putfield io.vertx.core.impl.HAManager.group:Ljava/lang/String;
        14: .line 130
            aload 0 /* this */
            iload 8 /* enabled */
            putfield io.vertx.core.impl.HAManager.enabled:Z
        15: .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;Ljava/lang/Object;)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/Object;)Lio/vertx/core/json/JsonObject;
            putfield io.vertx.core.impl.HAManager.haInfo:Lio/vertx/core/json/JsonObject;
        16: .line 132
            aload 0 /* this */
            aload 4 /* clusterManager */
            invokeinterface io.vertx.core.spi.cluster.ClusterManager.getNodeId:()Ljava/lang/String;
            putfield io.vertx.core.impl.HAManager.nodeID:Ljava/lang/String;
        17: .line 133
            return
        end local 8 // boolean enabled
        end local 7 // java.lang.String group
        end local 6 // int quorumSize
        end local 5 // java.util.Map clusterMap
        end local 4 // io.vertx.core.spi.cluster.ClusterManager clusterManager
        end local 3 // io.vertx.core.impl.VerticleManager verticleFactoryManager
        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   18     0                    this  Lio/vertx/core/impl/HAManager;
            0   18     1                   vertx  Lio/vertx/core/impl/VertxInternal;
            0   18     2       deploymentManager  Lio/vertx/core/impl/DeploymentManager;
            0   18     3  verticleFactoryManager  Lio/vertx/core/impl/VerticleManager;
            0   18     4          clusterManager  Lio/vertx/core/spi/cluster/ClusterManager;
            0   18     5              clusterMap  Ljava/util/Map<Ljava/lang/String;Ljava/lang/String;>;
            0   18     6              quorumSize  I
            0   18     7                   group  Ljava/lang/String;
            0   18     8                 enabled  Z
    Signature: (Lio/vertx/core/impl/VertxInternal;Lio/vertx/core/impl/DeploymentManager;Lio/vertx/core/impl/VerticleManager;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       
      verticleFactoryManager  
      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;Ljava/lang/Object;)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/impl/logging/Logger;
            ldc "Quorum not attained. Deployment of verticle will be delayed until there's a quorum."
            invokeinterface io.vertx.core.impl.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=4, locals=3, 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 9
         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.checkQuorumTimerID:J
            lstore 1 /* timerID */
        start local 1 // long timerID
         4: .line 204
            lload 1 /* timerID */
            lconst_0
            lcmp
            iflt 7
         5: .line 205
            aload 0 /* this */
            ldc -1
            putfield io.vertx.core.impl.HAManager.checkQuorumTimerID:J
         6: .line 206
            aload 0 /* this */
            getfield io.vertx.core.impl.HAManager.vertx:Lio/vertx/core/impl/VertxInternal;
            lload 1 /* timerID */
            invokeinterface io.vertx.core.impl.VertxInternal.cancelTimer:(J)Z
            pop
         7: .line 208
      StackMap locals: long
      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
         8: .line 209
            aload 0 /* this */
            iconst_1
            putfield io.vertx.core.impl.HAManager.stopped:Z
        end local 1 // long timerID
         9: .line 211
      StackMap locals:
      StackMap stack:
            return
        end local 0 // io.vertx.core.impl.HAManager this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   10     0     this  Lio/vertx/core/impl/HAManager;
            4    9     1  timerID  J

  public void simulateKill();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=11, args_size=1
        start local 0 // io.vertx.core.impl.HAManager this
         0: .line 214
            aload 0 /* this */
            getfield io.vertx.core.impl.HAManager.stopped:Z
            ifne 29
         1: .line 215
            aload 0 /* this */
            iconst_1
            putfield io.vertx.core.impl.HAManager.killed:Z
         2: .line 216
            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 217
            invokestatic io.vertx.core.Promise.promise:()Lio/vertx/core/Promise;
            astore 2 /* promise */
        start local 2 // io.vertx.core.Promise promise
         4: .line 218
            aload 0 /* this */
            getfield io.vertx.core.impl.HAManager.clusterManager:Lio/vertx/core/spi/cluster/ClusterManager;
            aload 2 /* promise */
            invokeinterface io.vertx.core.spi.cluster.ClusterManager.leave:(Lio/vertx/core/Promise;)V
         5: .line 219
            aload 2 /* promise */
            invokeinterface io.vertx.core.Promise.future:()Lio/vertx/core/Future;
         6: .line 220
            invokedynamic handle()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/lang/Throwable;)V (6)
                  (Ljava/lang/Throwable;)V
            invokeinterface io.vertx.core.Future.onFailure:(Lio/vertx/core/Handler;)Lio/vertx/core/Future;
         7: .line 221
            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$2(Ljava/util/concurrent/CountDownLatch;Lio/vertx/core/AsyncResult;)V (6)
                  (Lio/vertx/core/AsyncResult;)V
            invokeinterface io.vertx.core.Future.onComplete:(Lio/vertx/core/Handler;)Lio/vertx/core/Future;
            pop
         8: .line 222
            aload 0 /* this */
            getfield io.vertx.core.impl.HAManager.checkQuorumTimerID:J
            lstore 3 /* timerID */
        start local 3 // long timerID
         9: .line 223
            lload 3 /* timerID */
            lconst_0
            lcmp
            iflt 12
        10: .line 224
            aload 0 /* this */
            ldc -1
            putfield io.vertx.core.impl.HAManager.checkQuorumTimerID:J
        11: .line 225
            aload 0 /* this */
            getfield io.vertx.core.impl.HAManager.vertx:Lio/vertx/core/impl/VertxInternal;
            lload 3 /* timerID */
            invokeinterface io.vertx.core.impl.VertxInternal.cancelTimer:(J)Z
            pop
        12: .line 227
      StackMap locals: java.util.concurrent.CountDownLatch io.vertx.core.Promise long
      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
        13: .line 229
            iconst_0
            istore 5 /* interrupted */
        start local 5 // boolean interrupted
        14: .line 231
            getstatic java.util.concurrent.TimeUnit.MINUTES:Ljava/util/concurrent/TimeUnit;
            lconst_1
            invokevirtual java.util.concurrent.TimeUnit.toNanos:(J)J
            lstore 6 /* remainingNanos */
        start local 6 // long remainingNanos
        15: .line 232
            invokestatic java.lang.System.nanoTime:()J
            lload 6 /* remainingNanos */
            ladd
            lstore 8 /* end */
        start local 8 // long end
        16: .line 236
      StackMap locals: int long long
      StackMap stack:
            aload 1 /* latch */
            lload 6 /* remainingNanos */
            getstatic java.util.concurrent.TimeUnit.NANOSECONDS:Ljava/util/concurrent/TimeUnit;
            invokevirtual java.util.concurrent.CountDownLatch.await:(JLjava/util/concurrent/TimeUnit;)Z
            pop
        17: .line 237
            goto 26
        18: .line 238
      StackMap locals:
      StackMap stack: java.lang.InterruptedException
            pop
        19: .line 239
            iconst_1
            istore 5 /* interrupted */
        20: .line 240
            lload 8 /* end */
            invokestatic java.lang.System.nanoTime:()J
            lsub
            lstore 6 /* remainingNanos */
        21: .line 234
            goto 16
        end local 8 // long end
        end local 6 // long remainingNanos
        22: .line 243
      StackMap locals: io.vertx.core.impl.HAManager java.util.concurrent.CountDownLatch io.vertx.core.Promise long int
      StackMap stack: java.lang.Throwable
            astore 10
        23: .line 244
            iload 5 /* interrupted */
            ifeq 25
        24: .line 245
            invokestatic java.lang.Thread.currentThread:()Ljava/lang/Thread;
            invokevirtual java.lang.Thread.interrupt:()V
        25: .line 247
      StackMap locals: io.vertx.core.impl.HAManager java.util.concurrent.CountDownLatch io.vertx.core.Promise long int top top top top java.lang.Throwable
      StackMap stack:
            aload 10
            athrow
        26: .line 244
      StackMap locals: io.vertx.core.impl.HAManager java.util.concurrent.CountDownLatch io.vertx.core.Promise long int
      StackMap stack:
            iload 5 /* interrupted */
            ifeq 28
        27: .line 245
            invokestatic java.lang.Thread.currentThread:()Ljava/lang/Thread;
            invokevirtual java.lang.Thread.interrupt:()V
        28: .line 249
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_1
            putfield io.vertx.core.impl.HAManager.stopped:Z
        end local 5 // boolean interrupted
        end local 3 // long timerID
        end local 2 // io.vertx.core.Promise promise
        end local 1 // java.util.concurrent.CountDownLatch latch
        29: .line 251
      StackMap locals: io.vertx.core.impl.HAManager
      StackMap stack:
            return
        end local 0 // io.vertx.core.impl.HAManager this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0   30     0            this  Lio/vertx/core/impl/HAManager;
            3   29     1           latch  Ljava/util/concurrent/CountDownLatch;
            4   29     2         promise  Lio/vertx/core/Promise<Ljava/lang/Void;>;
            9   29     3         timerID  J
           14   29     5     interrupted  Z
           15   22     6  remainingNanos  J
           16   22     8             end  J
      Exception table:
        from    to  target  type
          16    17      18  Class java.lang.InterruptedException
          14    22      22  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 254
            aload 0 /* this */
            aload 1 /* failoverCompleteHandler */
            putfield io.vertx.core.impl.HAManager.failoverCompleteHandler:Lio/vertx/core/impl/FailoverCompleteHandler;
         1: .line 255
            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 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 258
            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 262
            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 267
            aload 0 /* this */
            iload 1 /* fail */
            putfield io.vertx.core.impl.HAManager.failDuringFailover:Z
         1: .line 268
            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 272
            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$3(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 290
            aload 0 /* this */
            getfield io.vertx.core.impl.HAManager.verticleFactoryManager:Lio/vertx/core/impl/VerticleManager;
            aload 1 /* verticleName */
            aload 2 /* deploymentOptions */
            invokevirtual io.vertx.core.impl.VerticleManager.deployVerticle:(Ljava/lang/String;Lio/vertx/core/DeploymentOptions;)Lio/vertx/core/Future;
            invokedynamic apply()Ljava/util/function/Function;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;)Ljava/lang/Object;
                  io/vertx/core/impl/Deployment.deploymentID()Ljava/lang/String; (9 itf)
                  (Lio/vertx/core/impl/Deployment;)Ljava/lang/String;
            invokeinterface io.vertx.core.Future.map:(Ljava/util/function/Function;)Lio/vertx/core/Future;
            aload 4 /* wrappedHandler */
            invokeinterface io.vertx.core.Future.onComplete:(Lio/vertx/core/Handler;)Lio/vertx/core/Future;
            pop
         2: .line 291
            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 296
            aload 0 /* this */
            invokevirtual io.vertx.core.impl.HAManager.addHaInfoIfLost:()V
         1: .line 299
            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 300
            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 305
            aload 0 /* this */
            invokevirtual io.vertx.core.impl.HAManager.addHaInfoIfLost:()V
         1: .line 307
            aload 0 /* this */
            invokevirtual io.vertx.core.impl.HAManager.checkQuorum:()V
         2: .line 308
            aload 0 /* this */
            getfield io.vertx.core.impl.HAManager.attainedQuorum:Z
            ifeq 14
         3: .line 310
            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
         4: .line 312
            aload 2 /* sclusterInfo */
            ifnull 7
         5: .line 315
            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
         6: .line 316
            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
         7: .line 321
      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
         8: .line 323
            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 13
      StackMap locals: io.vertx.core.impl.HAManager java.lang.String java.lang.String java.util.List top java.util.Iterator
      StackMap stack:
         9: 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
        10: .line 324
            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 13
            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 13
        11: .line 325
            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
        12: .line 326
            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
        13: .line 323
      StackMap locals:
      StackMap stack:
            aload 5
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 9
        end local 3 // java.util.List nodes
        end local 2 // java.lang.String sclusterInfo
        14: .line 330
      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   15     0          this  Lio/vertx/core/impl/HAManager;
            0   15     1    leftNodeID  Ljava/lang/String;
            4   14     2  sclusterInfo  Ljava/lang/String;
            6    7     3   clusterInfo  Lio/vertx/core/json/JsonObject;
            8   14     3         nodes  Ljava/util/List<Ljava/lang/String;>;
           10   13     4         entry  Ljava/util/Map$Entry<Ljava/lang/String;Ljava/lang/String;>;
           12   13     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 333
            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 334
            aload 0 /* this */
            getfield io.vertx.core.impl.HAManager.haInfo:Lio/vertx/core/json/JsonObject;
            dup
            astore 1
            monitorenter
         2: .line 335
            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 334
            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 338
      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=8, 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 341
            aload 0 /* this */
            getfield io.vertx.core.impl.HAManager.stopped:Z
            ifne 5
         1: .line 342
            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 4
         2: .line 343
            aload 0 /* this */
            invokevirtual io.vertx.core.impl.HAManager.checkQuorum:()V
         3: .line 344
            goto 5
         4: .line 345
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            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$7(JLjava/lang/String;Ljava/lang/Long;)V (7)
                  (Ljava/lang/Long;)V
            invokeinterface io.vertx.core.impl.VertxInternal.setTimer:(JLio/vertx/core/Handler;)J
            putfield io.vertx.core.impl.HAManager.checkQuorumTimerID:J
         5: .line 364
      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    6     0    this  Lio/vertx/core/impl/HAManager;
            0    6     1  nodeID  Ljava/lang/String;
            0    6     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 368
            aload 0 /* this */
            getfield io.vertx.core.impl.HAManager.quorumSize:I
            ifne 3
         1: .line 369
            aload 0 /* this */
            iconst_1
            putfield io.vertx.core.impl.HAManager.attainedQuorum:Z
         2: .line 370
            goto 24
         3: .line 371
      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 372
            iconst_0
            istore 2 /* count */
        start local 2 // int count
         5: .line 373
            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 374
            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 375
            aload 5 /* json */
            ifnull 13
         9: .line 376
            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 377
            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 378
            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 379
            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 373
      StackMap locals:
      StackMap stack:
            aload 4
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 6
        14: .line 383
            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 384
            aload 0 /* this */
            getfield io.vertx.core.impl.HAManager.attainedQuorum:Z
            ifne 21
            iload 3 /* attained */
            ifeq 21
        18: .line 386
            getstatic io.vertx.core.impl.HAManager.log:Lio/vertx/core/impl/logging/Logger;
            ldc "A quorum has been obtained. Any deploymentIDs waiting on a quorum will now be deployed"
            invokeinterface io.vertx.core.impl.logging.Logger.info:(Ljava/lang/Object;)V
        19: .line 387
            aload 0 /* this */
            iconst_1
            putfield io.vertx.core.impl.HAManager.attainedQuorum:Z
        20: .line 388
            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 390
            getstatic io.vertx.core.impl.HAManager.log:Lio/vertx/core/impl/logging/Logger;
            ldc "There is no longer a quorum. Any HA deploymentIDs will be undeployed until a quorum is re-attained"
            invokeinterface io.vertx.core.impl.logging.Logger.info:(Ljava/lang/Object;)V
        23: .line 391
            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 394
      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 399
            aload 0 /* this */
            getfield io.vertx.core.impl.HAManager.haInfo:Lio/vertx/core/json/JsonObject;
            dup
            astore 5
            monitorenter
         1: .line 400
            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/Object;)Lio/vertx/core/json/JsonObject;
            astore 6 /* verticleConf */
        start local 6 // io.vertx.core.json.JsonObject verticleConf
         2: .line 401
            aload 6 /* verticleConf */
            ldc "verticle_name"
            aload 2 /* verticleName */
            invokevirtual io.vertx.core.json.JsonObject.put:(Ljava/lang/String;Ljava/lang/Object;)Lio/vertx/core/json/JsonObject;
            pop
         3: .line 402
            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;Ljava/lang/Object;)Lio/vertx/core/json/JsonObject;
            pop
         4: .line 403
            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 404
            aload 7 /* haMods */
            aload 6 /* verticleConf */
            invokevirtual io.vertx.core.json.JsonArray.add:(Ljava/lang/Object;)Lio/vertx/core/json/JsonArray;
            pop
         6: .line 405
            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 406
            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 399
            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 408
      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 413
            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$10(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 418
            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 422
            aload 0 /* this */
            getfield io.vertx.core.impl.HAManager.attainedQuorum:Z
            ifeq 3
         1: .line 423
            aload 0 /* this */
            invokevirtual io.vertx.core.impl.HAManager.deployHADeployments:()V
         2: .line 424
            goto 7
         3: .line 425
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual io.vertx.core.impl.HAManager.undeployHADeployments:()V
         4: .line 427
            goto 7
      StackMap locals:
      StackMap stack: java.lang.Throwable
         5: astore 1 /* t */
        start local 1 // java.lang.Throwable t
         6: .line 428
            getstatic io.vertx.core.impl.HAManager.log:Lio/vertx/core/impl/logging/Logger;
            ldc "Failed when checking HA deploymentIDs"
            aload 1 /* t */
            invokeinterface io.vertx.core.impl.logging.Logger.error:(Ljava/lang/Object;Ljava/lang/Throwable;)V
        end local 1 // java.lang.Throwable t
         7: .line 430
      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=3, locals=4, args_size=1
        start local 0 // io.vertx.core.impl.HAManager this
         0: .line 434
            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 6
      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 435
            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 436
            aload 3 /* dep */
            ifnull 6
         4: .line 437
            aload 3 /* dep */
            invokeinterface io.vertx.core.impl.Deployment.deploymentOptions:()Lio/vertx/core/DeploymentOptions;
            invokevirtual io.vertx.core.DeploymentOptions.isHa:()Z
            ifeq 6
         5: .line 438
            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$12(Ljava/lang/String;Lio/vertx/core/impl/Deployment;Ljava/lang/Void;)V (7)
                  (Ljava/lang/Void;)V
            invokestatic io.vertx.core.impl.ContextImpl.executeIsolated:(Lio/vertx/core/Handler;)V
        end local 3 // io.vertx.core.impl.Deployment dep
        end local 1 // java.lang.String deploymentID
         6: .line 434
      StackMap locals:
      StackMap stack:
            aload 2
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 1
         7: .line 457
            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;
            2    6     1  deploymentID  Ljava/lang/String;
            3    6     3           dep  Lio/vertx/core/impl/Deployment;

  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 461
            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 462
            iload 1 /* size */
            ifeq 10
         2: .line 463
            getstatic io.vertx.core.impl.HAManager.log:Lio/vertx/core/impl/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;
            invokeinterface io.vertx.core.impl.logging.Logger.info:(Ljava/lang/Object;)V
         3: .line 465
            goto 8
        start local 2 // java.lang.Runnable task
         4: .line 467
      StackMap locals: int java.lang.Runnable
      StackMap stack:
            aload 2 /* task */
            invokeinterface java.lang.Runnable.run:()V
         5: .line 468
            goto 8
      StackMap locals:
      StackMap stack: java.lang.Throwable
         6: astore 3 /* t */
        start local 3 // java.lang.Throwable t
         7: .line 469
            getstatic io.vertx.core.impl.HAManager.log:Lio/vertx/core/impl/logging/Logger;
            ldc "Failed to run redeployment task"
            aload 3 /* t */
            invokeinterface io.vertx.core.impl.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 465
      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 473
      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 478
            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 479
            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 480
            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 481
            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 482
            aload 3 /* deployments */
            ifnull 11
            aload 3 /* deployments */
            invokevirtual io.vertx.core.json.JsonArray.size:()I
            ifeq 11
         5: .line 483
            getstatic io.vertx.core.impl.HAManager.log:Lio/vertx/core/impl/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;
            invokeinterface io.vertx.core.impl.logging.Logger.info:(Ljava/lang/Object;)V
         6: .line 484
            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 485
            aload 6 /* obj */
            checkcast io.vertx.core.json.JsonObject
            astore 8 /* app */
        start local 8 // io.vertx.core.json.JsonObject app
         9: .line 486
            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 484
      StackMap locals:
      StackMap stack:
            aload 7
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 7
        11: .line 490
      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 491
            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$15(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 497
            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 498
            getstatic io.vertx.core.impl.HAManager.log:Lio/vertx/core/impl/logging/Logger;
            ldc "Failed to handle failover"
            aload 3 /* t */
            invokeinterface io.vertx.core.impl.logging.Logger.error:(Ljava/lang/Object;Ljava/lang/Throwable;)V
        16: .line 499
            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$16(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 505
      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 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 508
            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 510
            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$17(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 518
            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 519
            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 521
      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=5, locals=6, args_size=2
        start local 0 // io.vertx.core.impl.HAManager this
        start local 1 // io.vertx.core.json.JsonObject failedVerticle
         0: .line 525
            aload 0 /* this */
            getfield io.vertx.core.impl.HAManager.failDuringFailover:Z
            ifeq 2
         1: .line 526
            new io.vertx.core.VertxException
            dup
            ldc "Oops!"
            invokespecial io.vertx.core.VertxException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 529
      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 530
            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 531
            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 533
            aload 0 /* this */
            aload 1 /* failedVerticle */
            aload 2 /* verticleName */
            aload 4 /* err */
            aload 3 /* latch */
            invokedynamic handle(Lio/vertx/core/impl/HAManager;Lio/vertx/core/json/JsonObject;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$18(Lio/vertx/core/json/JsonObject;Ljava/lang/String;Ljava/util/concurrent/atomic/AtomicReference;Ljava/util/concurrent/CountDownLatch;Ljava/lang/Void;)V (7)
                  (Ljava/lang/Void;)V
            invokestatic io.vertx.core.impl.ContextImpl.executeIsolated:(Lio/vertx/core/Handler;)V
         6: .line 550
            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 10
         7: .line 551
            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
         8: .line 553
      StackMap locals: io.vertx.core.impl.HAManager io.vertx.core.json.JsonObject java.lang.String java.util.concurrent.CountDownLatch java.util.concurrent.atomic.AtomicReference
      StackMap stack: java.lang.InterruptedException
            astore 5 /* e */
        start local 5 // java.lang.InterruptedException e
         9: .line 554
            new java.lang.IllegalStateException
            dup
            aload 5 /* e */
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/Throwable;)V
            athrow
        end local 5 // java.lang.InterruptedException e
        10: .line 556
      StackMap locals:
      StackMap stack:
            return
        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   11     0            this  Lio/vertx/core/impl/HAManager;
            0   11     1  failedVerticle  Lio/vertx/core/json/JsonObject;
            3   11     2    verticleName  Ljava/lang/String;
            4   11     3           latch  Ljava/util/concurrent/CountDownLatch;
            5   11     4             err  Ljava/util/concurrent/atomic/AtomicReference<Ljava/lang/Throwable;>;
            9   10     5               e  Ljava/lang/InterruptedException;
      Exception table:
        from    to  target  type
           6     8       8  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 560
            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 561
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            astore 4 /* matchingMembers */
        start local 4 // java.util.ArrayList matchingMembers
         2: .line 562
            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 563
            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 564
            aload 7 /* sclusterInfo */
            ifnull 10
         6: .line 565
            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 566
            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 567
            aload 1 /* group */
            ifnull 9
            aload 1 /* group */
            aload 9 /* memberGroup */
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 10
         9: .line 568
      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 562
      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 572
            aload 4 /* matchingMembers */
            invokevirtual java.util.ArrayList.isEmpty:()Z
            ifne 15
        12: .line 574
            iload 2 /* hashCode */
            i2l
            ldc 2147483647
            ladd
            lstore 5 /* absHash */
        start local 5 // long absHash
        13: .line 575
            lload 5 /* absHash */
            aload 4 /* matchingMembers */
            invokevirtual java.util.ArrayList.size:()I
            i2l
            lrem
            lstore 7 /* lpos */
        start local 7 // long lpos
        14: .line 576
            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 578
      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.lang.Throwable);
    descriptor: (Ljava/lang/Throwable;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // java.lang.Throwable t
         0: .line 220
            getstatic io.vertx.core.impl.HAManager.log:Lio/vertx/core/impl/logging/Logger;
            ldc "Failed to leave cluster"
            aload 0 /* t */
            invokeinterface io.vertx.core.impl.logging.Logger.error:(Ljava/lang/Object;Ljava/lang/Throwable;)V
            return
        end local 0 // java.lang.Throwable t
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0     t  Ljava/lang/Throwable;

  private static void lambda$2(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=1, locals=2, args_size=2
        start local 1 // io.vertx.core.AsyncResult ar
         0: .line 221
            aload 0
            invokevirtual java.util.concurrent.CountDownLatch.countDown:()V
            return
        end local 1 // io.vertx.core.AsyncResult ar
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     1    ar  Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;

  private void lambda$3(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 273
            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$4(Lio/vertx/core/AsyncResult;Ljava/lang/String;Lio/vertx/core/DeploymentOptions;Lio/vertx/core/Promise;)V (7)
                  (Lio/vertx/core/Promise;)V
         1: .line 282
            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$5(Lio/vertx/core/Handler;Lio/vertx/core/AsyncResult;)V (6)
                  (Lio/vertx/core/AsyncResult;)V
         2: .line 273
            invokeinterface io.vertx.core.impl.VertxInternal.executeBlocking:(Lio/vertx/core/Handler;ZLio/vertx/core/Handler;)V
         3: .line 289
            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$7(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 */
            ldc -1
            putfield io.vertx.core.impl.HAManager.checkQuorumTimerID:J
         1: .line 347
            aload 0 /* this */
            getfield io.vertx.core.impl.HAManager.stopped:Z
            ifne 5
         2: .line 349
            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$8(JLjava/lang/String;Lio/vertx/core/Promise;)V (7)
                  (Lio/vertx/core/Promise;)V
         3: .line 359
            aconst_null
         4: .line 349
            invokeinterface io.vertx.core.impl.VertxInternal.executeBlockingInternal:(Lio/vertx/core/Handler;Lio/vertx/core/Handler;)V
         5: .line 361
      StackMap locals:
      StackMap stack:
            return
        end local 4 // java.lang.Long tid
        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     4   tid  Ljava/lang/Long;

  private void lambda$10(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=4, args_size=4
        start local 0 // io.vertx.core.impl.HAManager this
         0: .line 414
            aload 0 /* this */
            aload 1
            aload 2
            aload 3
            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$11(Ljava/lang/String;Lio/vertx/core/DeploymentOptions;Lio/vertx/core/Handler;Ljava/lang/Void;)V (7)
                  (Ljava/lang/Void;)V
            invokestatic io.vertx.core.impl.ContextImpl.executeIsolated:(Lio/vertx/core/Handler;)V
         1: .line 417
            return
        end local 0 // io.vertx.core.impl.HAManager this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/core/impl/HAManager;

  private void lambda$12(java.lang.String, io.vertx.core.impl.Deployment, java.lang.Void);
    descriptor: (Ljava/lang/String;Lio/vertx/core/impl/Deployment;Ljava/lang/Void;)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 // java.lang.Void v
         0: .line 439
            aload 0 /* this */
            getfield io.vertx.core.impl.HAManager.deploymentManager:Lio/vertx/core/impl/DeploymentManager;
            aload 1
            invokevirtual io.vertx.core.impl.DeploymentManager.undeployVerticle:(Ljava/lang/String;)Lio/vertx/core/Future;
            aload 0 /* this */
            aload 1
            aload 2
            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$13(Ljava/lang/String;Lio/vertx/core/impl/Deployment;Lio/vertx/core/AsyncResult;)V (7)
                  (Lio/vertx/core/AsyncResult;)V
            invokeinterface io.vertx.core.Future.onComplete:(Lio/vertx/core/Handler;)Lio/vertx/core/Future;
            pop
         1: .line 453
            return
        end local 3 // java.lang.Void v
        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     3     v  Ljava/lang/Void;

  private void lambda$15(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 492
            aload 0 /* this */
            getfield io.vertx.core.impl.HAManager.failoverCompleteHandler:Lio/vertx/core/impl/FailoverCompleteHandler;
            ifnull 2
         1: .line 493
            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 495
      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$16(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 500
            aload 0 /* this */
            getfield io.vertx.core.impl.HAManager.failoverCompleteHandler:Lio/vertx/core/impl/FailoverCompleteHandler;
            ifnull 2
         1: .line 501
            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 503
      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 static void lambda$17(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 512
            aload 1
            invokeinterface java.lang.Runnable.run:()V
         1: .line 513
            goto 5
      StackMap locals:
      StackMap stack: java.lang.Throwable
         2: astore 3
         3: .line 514
            aload 0
            invokevirtual java.util.concurrent.CountDownLatch.countDown:()V
         4: .line 515
            aload 3
            athrow
         5: .line 514
      StackMap locals:
      StackMap stack:
            aload 0
            invokevirtual java.util.concurrent.CountDownLatch.countDown:()V
         6: .line 516
            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 void lambda$18(io.vertx.core.json.JsonObject, java.lang.String, java.util.concurrent.atomic.AtomicReference, java.util.concurrent.CountDownLatch, java.lang.Void);
    descriptor: (Lio/vertx/core/json/JsonObject;Ljava/lang/String;Ljava/util/concurrent/atomic/AtomicReference;Ljava/util/concurrent/CountDownLatch;Ljava/lang/Void;)V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=6, locals=7, args_size=6
        start local 0 // io.vertx.core.impl.HAManager this
        start local 5 // java.lang.Void v
         0: .line 534
            aload 1
            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
         1: .line 535
            aload 0 /* this */
            aload 2
            new io.vertx.core.DeploymentOptions
            dup
            aload 6 /* options */
            invokespecial io.vertx.core.DeploymentOptions.<init>:(Lio/vertx/core/json/JsonObject;)V
            aload 2
            aload 3
            aload 4
            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$19(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
        end local 6 // io.vertx.core.json.JsonObject options
         2: .line 548
            return
        end local 5 // java.lang.Void v
        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     5        v  Ljava/lang/Void;
            1    2     6  options  Lio/vertx/core/json/JsonObject;

  private void lambda$4(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 274
            aload 1
            invokeinterface io.vertx.core.AsyncResult.succeeded:()Z
            ifeq 5
         1: .line 276
            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 277
            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 278
            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 279
            goto 6
         5: .line 280
      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 282
      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$5(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 283
            aload 0
            ifnull 3
         1: .line 284
            aload 0
            aload 1 /* ar2 */
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
         2: .line 285
            goto 5
      StackMap locals:
      StackMap stack:
         3: aload 1 /* ar2 */
            invokeinterface io.vertx.core.AsyncResult.failed:()Z
            ifeq 5
         4: .line 286
            getstatic io.vertx.core.impl.HAManager.log:Lio/vertx/core/impl/logging/Logger;
            ldc "Failed to deploy verticle"
            aload 1 /* ar2 */
            invokeinterface io.vertx.core.AsyncResult.cause:()Ljava/lang/Throwable;
            invokeinterface io.vertx.core.impl.logging.Logger.error:(Ljava/lang/Object;Ljava/lang/Throwable;)V
         5: .line 288
      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$8(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=5, args_size=4
        start local 0 // io.vertx.core.impl.HAManager this
        start local 4 // io.vertx.core.Promise fut
         0: .line 350
            invokestatic java.lang.System.currentTimeMillis:()J
            lload 1
            lsub
            ldc 10000
            lcmp
            ifle 3
         1: .line 351
            getstatic io.vertx.core.impl.HAManager.log:Lio/vertx/core/impl/logging/Logger;
            ldc "Timed out waiting for group information to appear"
            invokeinterface io.vertx.core.impl.logging.Logger.warn:(Ljava/lang/Object;)V
         2: .line 352
            goto 4
         3: .line 354
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 3
            lload 1
            invokedynamic handle(Lio/vertx/core/impl/HAManager;Ljava/lang/String;J)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(Ljava/lang/String;JLjava/lang/Void;)V (7)
                  (Ljava/lang/Void;)V
            invokestatic io.vertx.core.impl.ContextImpl.executeIsolated:(Lio/vertx/core/Handler;)V
         4: .line 358
      StackMap locals:
      StackMap stack:
            aload 4 /* fut */
            invokeinterface io.vertx.core.Promise.complete:()V
         5: .line 359
            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    6     0  this  Lio/vertx/core/impl/HAManager;
            0    6     4   fut  Lio/vertx/core/Promise<Ljava/lang/Object;>;

  private void lambda$11(java.lang.String, io.vertx.core.DeploymentOptions, io.vertx.core.Handler, java.lang.Void);
    descriptor: (Ljava/lang/String;Lio/vertx/core/DeploymentOptions;Lio/vertx/core/Handler;Ljava/lang/Void;)V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=4, locals=5, args_size=5
        start local 0 // io.vertx.core.impl.HAManager this
        start local 4 // java.lang.Void v
         0: .line 415
            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
         1: .line 416
            return
        end local 4 // java.lang.Void v
        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     4     v  Ljava/lang/Void;

  private void lambda$13(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 440
            aload 3 /* result */
            invokeinterface io.vertx.core.AsyncResult.succeeded:()Z
            ifeq 4
         1: .line 441
            getstatic io.vertx.core.impl.HAManager.log:Lio/vertx/core/impl/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;
            invokeinterface io.vertx.core.impl.logging.Logger.info:(Ljava/lang/Object;)V
         2: .line 442
            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$14(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 449
            goto 5
         4: .line 450
      StackMap locals:
      StackMap stack:
            getstatic io.vertx.core.impl.HAManager.log:Lio/vertx/core/impl/logging/Logger;
            ldc "Failed to undeploy deployment on lost quorum"
            aload 3 /* result */
            invokeinterface io.vertx.core.AsyncResult.cause:()Ljava/lang/Throwable;
            invokeinterface io.vertx.core.impl.logging.Logger.error:(Ljava/lang/Object;Ljava/lang/Throwable;)V
         5: .line 452
      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 static void lambda$19(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 536
            aload 3 /* result */
            invokeinterface io.vertx.core.AsyncResult.succeeded:()Z
            ifeq 3
         1: .line 537
            getstatic io.vertx.core.impl.HAManager.log:Lio/vertx/core/impl/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;
            invokeinterface io.vertx.core.impl.logging.Logger.info:(Ljava/lang/Object;)V
         2: .line 538
            goto 5
         3: .line 539
      StackMap locals:
      StackMap stack:
            getstatic io.vertx.core.impl.HAManager.log:Lio/vertx/core/impl/logging/Logger;
            ldc "Failed to redeploy verticle after failover"
            aload 3 /* result */
            invokeinterface io.vertx.core.AsyncResult.cause:()Ljava/lang/Throwable;
            invokeinterface io.vertx.core.impl.logging.Logger.error:(Ljava/lang/Object;Ljava/lang/Throwable;)V
         4: .line 540
            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 542
      StackMap locals:
      StackMap stack:
            aload 2
            invokevirtual java.util.concurrent.CountDownLatch.countDown:()V
         6: .line 543
            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 544
            aload 4 /* t */
            ifnull 9
         8: .line 545
            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 547
      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$9(java.lang.String, long, java.lang.Void);
    descriptor: (Ljava/lang/String;JLjava/lang/Void;)V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=4, locals=5, args_size=4
        start local 0 // io.vertx.core.impl.HAManager this
        start local 4 // java.lang.Void v
         0: .line 355
            aload 0 /* this */
            aload 1
            lload 2
            invokevirtual io.vertx.core.impl.HAManager.checkQuorumWhenAdded:(Ljava/lang/String;J)V
         1: .line 356
            return
        end local 4 // java.lang.Void v
        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     4     v  Ljava/lang/Void;

  private static void lambda$14(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 443
            aload 1 /* result1 */
            invokeinterface io.vertx.core.AsyncResult.succeeded:()Z
            ifeq 3
         1: .line 444
            getstatic io.vertx.core.impl.HAManager.log:Lio/vertx/core/impl/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;
            invokeinterface io.vertx.core.impl.logging.Logger.info:(Ljava/lang/Object;)V
         2: .line 445
            goto 4
         3: .line 446
      StackMap locals:
      StackMap stack:
            getstatic io.vertx.core.impl.HAManager.log:Lio/vertx/core/impl/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;
            invokeinterface io.vertx.core.impl.logging.Logger.error:(Ljava/lang/Object;Ljava/lang/Throwable;)V
         4: .line 448
      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