class io.vertx.core.impl.DeploymentManager$DeploymentImpl implements io.vertx.core.impl.Deployment
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: io.vertx.core.impl.DeploymentManager$DeploymentImpl
  super_class: java.lang.Object
{
  private static final int ST_DEPLOYED;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 0

  private static final int ST_UNDEPLOYING;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 1

  private static final int ST_UNDEPLOYED;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 2

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

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

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

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

  private final java.util.List<io.vertx.core.impl.DeploymentManager$VerticleHolder> verticles;
    descriptor: Ljava/util/List;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/List<Lio/vertx/core/impl/DeploymentManager$VerticleHolder;>;

  private final java.util.Set<io.vertx.core.impl.Deployment> children;
    descriptor: Ljava/util/Set;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/Set<Lio/vertx/core/impl/Deployment;>;

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

  private io.vertx.core.Handler<java.lang.Void> undeployHandler;
    descriptor: Lio/vertx/core/Handler;
    flags: (0x0002) ACC_PRIVATE
    Signature: Lio/vertx/core/Handler<Ljava/lang/Void;>;

  private int status;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

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

  final io.vertx.core.impl.DeploymentManager this$0;
    descriptor: Lio/vertx/core/impl/DeploymentManager;
    flags: (0x1010) ACC_FINAL, ACC_SYNTHETIC

  private void <init>(io.vertx.core.impl.DeploymentManager, io.vertx.core.impl.Deployment, java.lang.String, java.lang.String, io.vertx.core.DeploymentOptions);
    descriptor: (Lio/vertx/core/impl/DeploymentManager;Lio/vertx/core/impl/Deployment;Ljava/lang/String;Ljava/lang/String;Lio/vertx/core/DeploymentOptions;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=6, args_size=6
        start local 0 // io.vertx.core.impl.DeploymentManager$DeploymentImpl this
        start local 2 // io.vertx.core.impl.Deployment parent
        start local 3 // java.lang.String deploymentID
        start local 4 // java.lang.String verticleIdentifier
        start local 5 // io.vertx.core.DeploymentOptions options
         0: .line 265
            aload 0 /* this */
            aload 1
            putfield io.vertx.core.impl.DeploymentManager$DeploymentImpl.this$0:Lio/vertx/core/impl/DeploymentManager;
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 258
            aload 0 /* this */
            new java.util.concurrent.CopyOnWriteArrayList
            dup
            invokespecial java.util.concurrent.CopyOnWriteArrayList.<init>:()V
            putfield io.vertx.core.impl.DeploymentManager$DeploymentImpl.verticles:Ljava/util/List;
         2: .line 259
            aload 0 /* this */
            new io.vertx.core.impl.ConcurrentHashSet
            dup
            invokespecial io.vertx.core.impl.ConcurrentHashSet.<init>:()V
            putfield io.vertx.core.impl.DeploymentManager$DeploymentImpl.children:Ljava/util/Set;
         3: .line 262
            aload 0 /* this */
            iconst_0
            putfield io.vertx.core.impl.DeploymentManager$DeploymentImpl.status:I
         4: .line 266
            aload 0 /* this */
            aload 2 /* parent */
            putfield io.vertx.core.impl.DeploymentManager$DeploymentImpl.parent:Lio/vertx/core/impl/Deployment;
         5: .line 267
            aload 0 /* this */
            aload 3 /* deploymentID */
            putfield io.vertx.core.impl.DeploymentManager$DeploymentImpl.deploymentID:Ljava/lang/String;
         6: .line 268
            aload 0 /* this */
            aload 5 /* options */
            invokevirtual io.vertx.core.DeploymentOptions.getConfig:()Lio/vertx/core/json/JsonObject;
            ifnull 7
            aload 5 /* options */
            invokevirtual io.vertx.core.DeploymentOptions.getConfig:()Lio/vertx/core/json/JsonObject;
            invokevirtual io.vertx.core.json.JsonObject.copy:()Lio/vertx/core/json/JsonObject;
            goto 8
      StackMap locals: io.vertx.core.impl.DeploymentManager$DeploymentImpl io.vertx.core.impl.DeploymentManager io.vertx.core.impl.Deployment java.lang.String java.lang.String io.vertx.core.DeploymentOptions
      StackMap stack: io.vertx.core.impl.DeploymentManager$DeploymentImpl
         7: new io.vertx.core.json.JsonObject
            dup
            invokespecial io.vertx.core.json.JsonObject.<init>:()V
      StackMap locals: io.vertx.core.impl.DeploymentManager$DeploymentImpl io.vertx.core.impl.DeploymentManager io.vertx.core.impl.Deployment java.lang.String java.lang.String io.vertx.core.DeploymentOptions
      StackMap stack: io.vertx.core.impl.DeploymentManager$DeploymentImpl io.vertx.core.json.JsonObject
         8: putfield io.vertx.core.impl.DeploymentManager$DeploymentImpl.conf:Lio/vertx/core/json/JsonObject;
         9: .line 269
            aload 0 /* this */
            aload 4 /* verticleIdentifier */
            putfield io.vertx.core.impl.DeploymentManager$DeploymentImpl.verticleIdentifier:Ljava/lang/String;
        10: .line 270
            aload 0 /* this */
            aload 5 /* options */
            putfield io.vertx.core.impl.DeploymentManager$DeploymentImpl.options:Lio/vertx/core/DeploymentOptions;
        11: .line 271
            return
        end local 5 // io.vertx.core.DeploymentOptions options
        end local 4 // java.lang.String verticleIdentifier
        end local 3 // java.lang.String deploymentID
        end local 2 // io.vertx.core.impl.Deployment parent
        end local 0 // io.vertx.core.impl.DeploymentManager$DeploymentImpl this
      LocalVariableTable:
        Start  End  Slot                Name  Signature
            0   12     0                this  Lio/vertx/core/impl/DeploymentManager$DeploymentImpl;
            0   12     2              parent  Lio/vertx/core/impl/Deployment;
            0   12     3        deploymentID  Ljava/lang/String;
            0   12     4  verticleIdentifier  Ljava/lang/String;
            0   12     5             options  Lio/vertx/core/DeploymentOptions;
    MethodParameters:
                    Name  Flags
      this$0              final
      parent              
      deploymentID        
      verticleIdentifier  
      options             

  public void addVerticle(io.vertx.core.impl.DeploymentManager$VerticleHolder);
    descriptor: (Lio/vertx/core/impl/DeploymentManager$VerticleHolder;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.impl.DeploymentManager$DeploymentImpl this
        start local 1 // io.vertx.core.impl.DeploymentManager$VerticleHolder holder
         0: .line 274
            aload 0 /* this */
            getfield io.vertx.core.impl.DeploymentManager$DeploymentImpl.verticles:Ljava/util/List;
            aload 1 /* holder */
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
         1: .line 275
            return
        end local 1 // io.vertx.core.impl.DeploymentManager$VerticleHolder holder
        end local 0 // io.vertx.core.impl.DeploymentManager$DeploymentImpl this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lio/vertx/core/impl/DeploymentManager$DeploymentImpl;
            0    2     1  holder  Lio/vertx/core/impl/DeploymentManager$VerticleHolder;
    MethodParameters:
        Name  Flags
      holder  

  private synchronized void rollback(io.vertx.core.impl.ContextInternal, io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.core.impl.Deployment>>, io.vertx.core.impl.ContextImpl, io.vertx.core.impl.DeploymentManager$VerticleHolder, java.lang.Throwable);
    descriptor: (Lio/vertx/core/impl/ContextInternal;Lio/vertx/core/Handler;Lio/vertx/core/impl/ContextImpl;Lio/vertx/core/impl/DeploymentManager$VerticleHolder;Ljava/lang/Throwable;)V
    flags: (0x0022) ACC_PRIVATE, ACC_SYNCHRONIZED
    Code:
      stack=7, locals=6, args_size=6
        start local 0 // io.vertx.core.impl.DeploymentManager$DeploymentImpl this
        start local 1 // io.vertx.core.impl.ContextInternal callingContext
        start local 2 // io.vertx.core.Handler completionHandler
        start local 3 // io.vertx.core.impl.ContextImpl context
        start local 4 // io.vertx.core.impl.DeploymentManager$VerticleHolder closeHooks
        start local 5 // java.lang.Throwable cause
         0: .line 278
            aload 0 /* this */
            getfield io.vertx.core.impl.DeploymentManager$DeploymentImpl.status:I
            ifne 3
         1: .line 279
            aload 0 /* this */
            iconst_1
            putfield io.vertx.core.impl.DeploymentManager$DeploymentImpl.status:I
         2: .line 280
            aload 0 /* this */
            aload 1 /* callingContext */
            invokevirtual io.vertx.core.impl.DeploymentManager$DeploymentImpl.doUndeployChildren:(Lio/vertx/core/impl/ContextInternal;)Lio/vertx/core/Future;
            aload 0 /* this */
            aload 3 /* context */
            aload 5 /* cause */
            aload 1 /* callingContext */
            aload 2 /* completionHandler */
            aload 4 /* closeHooks */
            invokedynamic handle(Lio/vertx/core/impl/DeploymentManager$DeploymentImpl;Lio/vertx/core/impl/ContextImpl;Ljava/lang/Throwable;Lio/vertx/core/impl/ContextInternal;Lio/vertx/core/Handler;Lio/vertx/core/impl/DeploymentManager$VerticleHolder;)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/DeploymentManager$DeploymentImpl.lambda$0(Lio/vertx/core/impl/ContextImpl;Ljava/lang/Throwable;Lio/vertx/core/impl/ContextInternal;Lio/vertx/core/Handler;Lio/vertx/core/impl/DeploymentManager$VerticleHolder;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
         3: .line 301
      StackMap locals:
      StackMap stack:
            return
        end local 5 // java.lang.Throwable cause
        end local 4 // io.vertx.core.impl.DeploymentManager$VerticleHolder closeHooks
        end local 3 // io.vertx.core.impl.ContextImpl context
        end local 2 // io.vertx.core.Handler completionHandler
        end local 1 // io.vertx.core.impl.ContextInternal callingContext
        end local 0 // io.vertx.core.impl.DeploymentManager$DeploymentImpl this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0    4     0               this  Lio/vertx/core/impl/DeploymentManager$DeploymentImpl;
            0    4     1     callingContext  Lio/vertx/core/impl/ContextInternal;
            0    4     2  completionHandler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/core/impl/Deployment;>;>;
            0    4     3            context  Lio/vertx/core/impl/ContextImpl;
            0    4     4         closeHooks  Lio/vertx/core/impl/DeploymentManager$VerticleHolder;
            0    4     5              cause  Ljava/lang/Throwable;
    Signature: (Lio/vertx/core/impl/ContextInternal;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/core/impl/Deployment;>;>;Lio/vertx/core/impl/ContextImpl;Lio/vertx/core/impl/DeploymentManager$VerticleHolder;Ljava/lang/Throwable;)V
    MethodParameters:
                   Name  Flags
      callingContext     
      completionHandler  
      context            
      closeHooks         
      cause              

  public io.vertx.core.Future<java.lang.Void> undeploy();
    descriptor: ()Lio/vertx/core/Future;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // io.vertx.core.impl.DeploymentManager$DeploymentImpl this
         0: .line 305
            aload 0 /* this */
            getfield io.vertx.core.impl.DeploymentManager$DeploymentImpl.this$0:Lio/vertx/core/impl/DeploymentManager;
            getfield io.vertx.core.impl.DeploymentManager.vertx:Lio/vertx/core/impl/VertxInternal;
            invokeinterface io.vertx.core.impl.VertxInternal.getOrCreateContext:()Lio/vertx/core/impl/ContextInternal;
            astore 1 /* currentContext */
        start local 1 // io.vertx.core.impl.ContextInternal currentContext
         1: .line 306
            aload 0 /* this */
            aload 1 /* currentContext */
            invokevirtual io.vertx.core.impl.DeploymentManager$DeploymentImpl.doUndeploy:(Lio/vertx/core/impl/ContextInternal;)Lio/vertx/core/Future;
            areturn
        end local 1 // io.vertx.core.impl.ContextInternal currentContext
        end local 0 // io.vertx.core.impl.DeploymentManager$DeploymentImpl this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    2     0            this  Lio/vertx/core/impl/DeploymentManager$DeploymentImpl;
            1    2     1  currentContext  Lio/vertx/core/impl/ContextInternal;
    Signature: ()Lio/vertx/core/Future<Ljava/lang/Void;>;

  private synchronized io.vertx.core.Future<java.lang.Void> doUndeployChildren(io.vertx.core.impl.ContextInternal);
    descriptor: (Lio/vertx/core/impl/ContextInternal;)Lio/vertx/core/Future;
    flags: (0x0022) ACC_PRIVATE, ACC_SYNCHRONIZED
    Code:
      stack=5, locals=6, args_size=2
        start local 0 // io.vertx.core.impl.DeploymentManager$DeploymentImpl this
        start local 1 // io.vertx.core.impl.ContextInternal undeployingContext
         0: .line 310
            aload 0 /* this */
            getfield io.vertx.core.impl.DeploymentManager$DeploymentImpl.children:Ljava/util/Set;
            invokeinterface java.util.Set.isEmpty:()Z
            ifne 9
         1: .line 311
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            astore 2 /* childFuts */
        start local 2 // java.util.List childFuts
         2: .line 312
            new java.util.HashSet
            dup
            aload 0 /* this */
            getfield io.vertx.core.impl.DeploymentManager$DeploymentImpl.children:Ljava/util/Set;
            invokespecial java.util.HashSet.<init>:(Ljava/util/Collection;)V
            invokevirtual java.util.HashSet.iterator:()Ljava/util/Iterator;
            astore 4
            goto 7
      StackMap locals: io.vertx.core.impl.DeploymentManager$DeploymentImpl io.vertx.core.impl.ContextInternal java.util.List top java.util.Iterator
      StackMap stack:
         3: aload 4
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast io.vertx.core.impl.Deployment
            astore 3 /* childDeployment */
        start local 3 // io.vertx.core.impl.Deployment childDeployment
         4: .line 313
            invokestatic io.vertx.core.Promise.promise:()Lio/vertx/core/Promise;
            astore 5 /* p */
        start local 5 // io.vertx.core.Promise p
         5: .line 314
            aload 2 /* childFuts */
            aload 5 /* p */
            invokeinterface io.vertx.core.Promise.future:()Lio/vertx/core/Future;
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
         6: .line 315
            aload 3 /* childDeployment */
            aload 1 /* undeployingContext */
            aload 0 /* this */
            aload 3 /* childDeployment */
            aload 5 /* p */
            invokedynamic handle(Lio/vertx/core/impl/DeploymentManager$DeploymentImpl;Lio/vertx/core/impl/Deployment;Lio/vertx/core/Promise;)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/DeploymentManager$DeploymentImpl.lambda$2(Lio/vertx/core/impl/Deployment;Lio/vertx/core/Promise;Lio/vertx/core/AsyncResult;)V (7)
                  (Lio/vertx/core/AsyncResult;)V
            invokeinterface io.vertx.core.impl.Deployment.doUndeploy:(Lio/vertx/core/impl/ContextInternal;Lio/vertx/core/Handler;)V
        end local 5 // io.vertx.core.Promise p
        end local 3 // io.vertx.core.impl.Deployment childDeployment
         7: .line 312
      StackMap locals:
      StackMap stack:
            aload 4
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 3
         8: .line 320
            aload 2 /* childFuts */
            invokestatic io.vertx.core.CompositeFuture.all:(Ljava/util/List;)Lio/vertx/core/CompositeFuture;
            invokeinterface io.vertx.core.CompositeFuture.mapEmpty:()Lio/vertx/core/Future;
            areturn
        end local 2 // java.util.List childFuts
         9: .line 322
      StackMap locals: io.vertx.core.impl.DeploymentManager$DeploymentImpl io.vertx.core.impl.ContextInternal
      StackMap stack:
            invokestatic io.vertx.core.Future.succeededFuture:()Lio/vertx/core/Future;
            areturn
        end local 1 // io.vertx.core.impl.ContextInternal undeployingContext
        end local 0 // io.vertx.core.impl.DeploymentManager$DeploymentImpl this
      LocalVariableTable:
        Start  End  Slot                Name  Signature
            0   10     0                this  Lio/vertx/core/impl/DeploymentManager$DeploymentImpl;
            0   10     1  undeployingContext  Lio/vertx/core/impl/ContextInternal;
            2    9     2           childFuts  Ljava/util/List<Lio/vertx/core/Future;>;
            4    7     3     childDeployment  Lio/vertx/core/impl/Deployment;
            5    7     5                   p  Lio/vertx/core/Promise<Ljava/lang/Void;>;
    Signature: (Lio/vertx/core/impl/ContextInternal;)Lio/vertx/core/Future<Ljava/lang/Void;>;
    MethodParameters:
                    Name  Flags
      undeployingContext  

  public synchronized io.vertx.core.Future<java.lang.Void> doUndeploy(io.vertx.core.impl.ContextInternal);
    descriptor: (Lio/vertx/core/impl/ContextInternal;)Lio/vertx/core/Future;
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=5, locals=7, args_size=2
        start local 0 // io.vertx.core.impl.DeploymentManager$DeploymentImpl this
        start local 1 // io.vertx.core.impl.ContextInternal undeployingContext
         0: .line 327
            aload 0 /* this */
            getfield io.vertx.core.impl.DeploymentManager$DeploymentImpl.status:I
            iconst_2
            if_icmpne 2
         1: .line 328
            new java.lang.IllegalStateException
            dup
            ldc "Already undeployed"
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            invokestatic io.vertx.core.Future.failedFuture:(Ljava/lang/Throwable;)Lio/vertx/core/Future;
            areturn
         2: .line 330
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.core.impl.DeploymentManager$DeploymentImpl.children:Ljava/util/Set;
            invokeinterface java.util.Set.isEmpty:()Z
            ifne 5
         3: .line 331
            aload 0 /* this */
            iconst_1
            putfield io.vertx.core.impl.DeploymentManager$DeploymentImpl.status:I
         4: .line 332
            aload 0 /* this */
            aload 1 /* undeployingContext */
            invokevirtual io.vertx.core.impl.DeploymentManager$DeploymentImpl.doUndeployChildren:(Lio/vertx/core/impl/ContextInternal;)Lio/vertx/core/Future;
            aload 0 /* this */
            aload 1 /* undeployingContext */
            invokedynamic apply(Lio/vertx/core/impl/DeploymentManager$DeploymentImpl;Lio/vertx/core/impl/ContextInternal;)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/DeploymentManager$DeploymentImpl.lambda$3(Lio/vertx/core/impl/ContextInternal;Ljava/lang/Void;)Lio/vertx/core/Future; (7)
                  (Ljava/lang/Void;)Lio/vertx/core/Future;
            invokeinterface io.vertx.core.Future.compose:(Ljava/util/function/Function;)Lio/vertx/core/Future;
            areturn
         5: .line 334
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_2
            putfield io.vertx.core.impl.DeploymentManager$DeploymentImpl.status:I
         6: .line 335
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            astore 2 /* undeployFutures */
        start local 2 // java.util.List undeployFutures
         7: .line 336
            aload 0 /* this */
            getfield io.vertx.core.impl.DeploymentManager$DeploymentImpl.parent:Lio/vertx/core/impl/Deployment;
            ifnull 9
         8: .line 337
            aload 0 /* this */
            getfield io.vertx.core.impl.DeploymentManager$DeploymentImpl.parent:Lio/vertx/core/impl/Deployment;
            aload 0 /* this */
            invokeinterface io.vertx.core.impl.Deployment.removeChild:(Lio/vertx/core/impl/Deployment;)V
         9: .line 339
      StackMap locals: java.util.List
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.core.impl.DeploymentManager$DeploymentImpl.verticles:Ljava/util/List;
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 4
            goto 15
      StackMap locals: io.vertx.core.impl.DeploymentManager$DeploymentImpl io.vertx.core.impl.ContextInternal java.util.List top java.util.Iterator
      StackMap stack:
        10: aload 4
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast io.vertx.core.impl.DeploymentManager$VerticleHolder
            astore 3 /* verticleHolder */
        start local 3 // io.vertx.core.impl.DeploymentManager$VerticleHolder verticleHolder
        11: .line 340
            aload 3 /* verticleHolder */
            getfield io.vertx.core.impl.DeploymentManager$VerticleHolder.context:Lio/vertx/core/impl/ContextImpl;
            astore 5 /* context */
        start local 5 // io.vertx.core.impl.ContextImpl context
        12: .line 341
            invokestatic io.vertx.core.Promise.promise:()Lio/vertx/core/Promise;
            astore 6 /* p */
        start local 6 // io.vertx.core.Promise p
        13: .line 342
            aload 2 /* undeployFutures */
            aload 6 /* p */
            invokeinterface io.vertx.core.Promise.future:()Lio/vertx/core/Future;
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        14: .line 343
            aload 5 /* context */
            aload 0 /* this */
            aload 1 /* undeployingContext */
            aload 3 /* verticleHolder */
            aload 6 /* p */
            invokedynamic handle(Lio/vertx/core/impl/DeploymentManager$DeploymentImpl;Lio/vertx/core/impl/ContextInternal;Lio/vertx/core/impl/DeploymentManager$VerticleHolder;Lio/vertx/core/Promise;)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/DeploymentManager$DeploymentImpl.lambda$4(Lio/vertx/core/impl/ContextInternal;Lio/vertx/core/impl/DeploymentManager$VerticleHolder;Lio/vertx/core/Promise;Ljava/lang/Void;)V (7)
                  (Ljava/lang/Void;)V
            invokevirtual io.vertx.core.impl.ContextImpl.runOnContext:(Lio/vertx/core/Handler;)V
        end local 6 // io.vertx.core.Promise p
        end local 5 // io.vertx.core.impl.ContextImpl context
        end local 3 // io.vertx.core.impl.DeploymentManager$VerticleHolder verticleHolder
        15: .line 339
      StackMap locals:
      StackMap stack:
            aload 4
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 10
        16: .line 369
            aload 1 /* undeployingContext */
            invokeinterface io.vertx.core.impl.ContextInternal.promise:()Lio/vertx/core/impl/future/PromiseInternal;
            astore 3 /* resolvingPromise */
        start local 3 // io.vertx.core.Promise resolvingPromise
        17: .line 370
            aload 2 /* undeployFutures */
            invokestatic io.vertx.core.CompositeFuture.all:(Ljava/util/List;)Lio/vertx/core/CompositeFuture;
            invokeinterface io.vertx.core.CompositeFuture.mapEmpty:()Lio/vertx/core/Future;
            aload 3 /* resolvingPromise */
            invokeinterface io.vertx.core.Future.onComplete:(Lio/vertx/core/Handler;)Lio/vertx/core/Future;
            pop
        18: .line 371
            aload 3 /* resolvingPromise */
            invokeinterface io.vertx.core.Promise.future:()Lio/vertx/core/Future;
            astore 4 /* fut */
        start local 4 // io.vertx.core.Future fut
        19: .line 372
            aload 0 /* this */
            getfield io.vertx.core.impl.DeploymentManager$DeploymentImpl.undeployHandler:Lio/vertx/core/Handler;
            astore 5 /* handler */
        start local 5 // io.vertx.core.Handler handler
        20: .line 373
            aload 5 /* handler */
            ifnull 25
        21: .line 374
            aload 0 /* this */
            aconst_null
            putfield io.vertx.core.impl.DeploymentManager$DeploymentImpl.undeployHandler:Lio/vertx/core/Handler;
        22: .line 375
            aload 4 /* fut */
            aload 5 /* handler */
            invokedynamic apply(Lio/vertx/core/Handler;)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/DeploymentManager$DeploymentImpl.lambda$7(Lio/vertx/core/Handler;Ljava/lang/Void;)Lio/vertx/core/Future; (6)
                  (Ljava/lang/Void;)Lio/vertx/core/Future;
        23: .line 378
            aload 5 /* handler */
            invokedynamic apply(Lio/vertx/core/Handler;)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/DeploymentManager$DeploymentImpl.lambda$8(Lio/vertx/core/Handler;Ljava/lang/Throwable;)Lio/vertx/core/Future; (6)
                  (Ljava/lang/Throwable;)Lio/vertx/core/Future;
        24: .line 375
            invokeinterface io.vertx.core.Future.compose:(Ljava/util/function/Function;Ljava/util/function/Function;)Lio/vertx/core/Future;
            areturn
        25: .line 383
      StackMap locals: io.vertx.core.impl.DeploymentManager$DeploymentImpl io.vertx.core.impl.ContextInternal java.util.List io.vertx.core.Promise io.vertx.core.Future io.vertx.core.Handler
      StackMap stack:
            aload 4 /* fut */
            areturn
        end local 5 // io.vertx.core.Handler handler
        end local 4 // io.vertx.core.Future fut
        end local 3 // io.vertx.core.Promise resolvingPromise
        end local 2 // java.util.List undeployFutures
        end local 1 // io.vertx.core.impl.ContextInternal undeployingContext
        end local 0 // io.vertx.core.impl.DeploymentManager$DeploymentImpl this
      LocalVariableTable:
        Start  End  Slot                Name  Signature
            0   26     0                this  Lio/vertx/core/impl/DeploymentManager$DeploymentImpl;
            0   26     1  undeployingContext  Lio/vertx/core/impl/ContextInternal;
            7   26     2     undeployFutures  Ljava/util/List<Lio/vertx/core/Future;>;
           11   15     3      verticleHolder  Lio/vertx/core/impl/DeploymentManager$VerticleHolder;
           12   15     5             context  Lio/vertx/core/impl/ContextImpl;
           13   15     6                   p  Lio/vertx/core/Promise;
           17   26     3    resolvingPromise  Lio/vertx/core/Promise<Ljava/lang/Void;>;
           19   26     4                 fut  Lio/vertx/core/Future<Ljava/lang/Void;>;
           20   26     5             handler  Lio/vertx/core/Handler<Ljava/lang/Void;>;
    Signature: (Lio/vertx/core/impl/ContextInternal;)Lio/vertx/core/Future<Ljava/lang/Void;>;
    MethodParameters:
                    Name  Flags
      undeployingContext  

  public java.lang.String verticleIdentifier();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.impl.DeploymentManager$DeploymentImpl this
         0: .line 389
            aload 0 /* this */
            getfield io.vertx.core.impl.DeploymentManager$DeploymentImpl.verticleIdentifier:Ljava/lang/String;
            areturn
        end local 0 // io.vertx.core.impl.DeploymentManager$DeploymentImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/impl/DeploymentManager$DeploymentImpl;

  public io.vertx.core.DeploymentOptions deploymentOptions();
    descriptor: ()Lio/vertx/core/DeploymentOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.impl.DeploymentManager$DeploymentImpl this
         0: .line 394
            aload 0 /* this */
            getfield io.vertx.core.impl.DeploymentManager$DeploymentImpl.options:Lio/vertx/core/DeploymentOptions;
            areturn
        end local 0 // io.vertx.core.impl.DeploymentManager$DeploymentImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/impl/DeploymentManager$DeploymentImpl;

  public io.vertx.core.json.JsonObject config();
    descriptor: ()Lio/vertx/core/json/JsonObject;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.impl.DeploymentManager$DeploymentImpl this
         0: .line 399
            aload 0 /* this */
            getfield io.vertx.core.impl.DeploymentManager$DeploymentImpl.conf:Lio/vertx/core/json/JsonObject;
            areturn
        end local 0 // io.vertx.core.impl.DeploymentManager$DeploymentImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/impl/DeploymentManager$DeploymentImpl;

  public synchronized boolean addChild(io.vertx.core.impl.Deployment);
    descriptor: (Lio/vertx/core/impl/Deployment;)Z
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.impl.DeploymentManager$DeploymentImpl this
        start local 1 // io.vertx.core.impl.Deployment deployment
         0: .line 404
            aload 0 /* this */
            getfield io.vertx.core.impl.DeploymentManager$DeploymentImpl.status:I
            ifne 3
         1: .line 405
            aload 0 /* this */
            getfield io.vertx.core.impl.DeploymentManager$DeploymentImpl.children:Ljava/util/Set;
            aload 1 /* deployment */
            invokeinterface java.util.Set.add:(Ljava/lang/Object;)Z
            pop
         2: .line 406
            iconst_1
            ireturn
         3: .line 408
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        end local 1 // io.vertx.core.impl.Deployment deployment
        end local 0 // io.vertx.core.impl.DeploymentManager$DeploymentImpl this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    4     0        this  Lio/vertx/core/impl/DeploymentManager$DeploymentImpl;
            0    4     1  deployment  Lio/vertx/core/impl/Deployment;
    MethodParameters:
            Name  Flags
      deployment  

  public void removeChild(io.vertx.core.impl.Deployment);
    descriptor: (Lio/vertx/core/impl/Deployment;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.impl.DeploymentManager$DeploymentImpl this
        start local 1 // io.vertx.core.impl.Deployment deployment
         0: .line 414
            aload 0 /* this */
            getfield io.vertx.core.impl.DeploymentManager$DeploymentImpl.children:Ljava/util/Set;
            aload 1 /* deployment */
            invokeinterface java.util.Set.remove:(Ljava/lang/Object;)Z
            pop
         1: .line 415
            return
        end local 1 // io.vertx.core.impl.Deployment deployment
        end local 0 // io.vertx.core.impl.DeploymentManager$DeploymentImpl this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    2     0        this  Lio/vertx/core/impl/DeploymentManager$DeploymentImpl;
            0    2     1  deployment  Lio/vertx/core/impl/Deployment;
    MethodParameters:
            Name  Flags
      deployment  

  public java.util.Set<io.vertx.core.Context> getContexts();
    descriptor: ()Ljava/util/Set;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=1
        start local 0 // io.vertx.core.impl.DeploymentManager$DeploymentImpl this
         0: .line 419
            new java.util.HashSet
            dup
            invokespecial java.util.HashSet.<init>:()V
            astore 1 /* contexts */
        start local 1 // java.util.Set contexts
         1: .line 420
            aload 0 /* this */
            getfield io.vertx.core.impl.DeploymentManager$DeploymentImpl.verticles:Ljava/util/List;
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 3
            goto 4
      StackMap locals: io.vertx.core.impl.DeploymentManager$DeploymentImpl java.util.Set top java.util.Iterator
      StackMap stack:
         2: aload 3
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast io.vertx.core.impl.DeploymentManager$VerticleHolder
            astore 2 /* holder */
        start local 2 // io.vertx.core.impl.DeploymentManager$VerticleHolder holder
         3: .line 421
            aload 1 /* contexts */
            aload 2 /* holder */
            getfield io.vertx.core.impl.DeploymentManager$VerticleHolder.context:Lio/vertx/core/impl/ContextImpl;
            invokeinterface java.util.Set.add:(Ljava/lang/Object;)Z
            pop
        end local 2 // io.vertx.core.impl.DeploymentManager$VerticleHolder holder
         4: .line 420
      StackMap locals:
      StackMap stack:
            aload 3
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 2
         5: .line 423
            aload 1 /* contexts */
            areturn
        end local 1 // java.util.Set contexts
        end local 0 // io.vertx.core.impl.DeploymentManager$DeploymentImpl this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    6     0      this  Lio/vertx/core/impl/DeploymentManager$DeploymentImpl;
            1    6     1  contexts  Ljava/util/Set<Lio/vertx/core/Context;>;
            3    4     2    holder  Lio/vertx/core/impl/DeploymentManager$VerticleHolder;
    Signature: ()Ljava/util/Set<Lio/vertx/core/Context;>;

  public java.util.Set<io.vertx.core.Verticle> getVerticles();
    descriptor: ()Ljava/util/Set;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=1
        start local 0 // io.vertx.core.impl.DeploymentManager$DeploymentImpl this
         0: .line 428
            new java.util.HashSet
            dup
            invokespecial java.util.HashSet.<init>:()V
            astore 1 /* verts */
        start local 1 // java.util.Set verts
         1: .line 429
            aload 0 /* this */
            getfield io.vertx.core.impl.DeploymentManager$DeploymentImpl.verticles:Ljava/util/List;
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 3
            goto 4
      StackMap locals: io.vertx.core.impl.DeploymentManager$DeploymentImpl java.util.Set top java.util.Iterator
      StackMap stack:
         2: aload 3
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast io.vertx.core.impl.DeploymentManager$VerticleHolder
            astore 2 /* holder */
        start local 2 // io.vertx.core.impl.DeploymentManager$VerticleHolder holder
         3: .line 430
            aload 1 /* verts */
            aload 2 /* holder */
            getfield io.vertx.core.impl.DeploymentManager$VerticleHolder.verticle:Lio/vertx/core/Verticle;
            invokeinterface java.util.Set.add:(Ljava/lang/Object;)Z
            pop
        end local 2 // io.vertx.core.impl.DeploymentManager$VerticleHolder holder
         4: .line 429
      StackMap locals:
      StackMap stack:
            aload 3
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 2
         5: .line 432
            aload 1 /* verts */
            areturn
        end local 1 // java.util.Set verts
        end local 0 // io.vertx.core.impl.DeploymentManager$DeploymentImpl this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    6     0    this  Lio/vertx/core/impl/DeploymentManager$DeploymentImpl;
            1    6     1   verts  Ljava/util/Set<Lio/vertx/core/Verticle;>;
            3    4     2  holder  Lio/vertx/core/impl/DeploymentManager$VerticleHolder;
    Signature: ()Ljava/util/Set<Lio/vertx/core/Verticle;>;

  public void undeployHandler(io.vertx.core.Handler<java.lang.Void>);
    descriptor: (Lio/vertx/core/Handler;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // io.vertx.core.impl.DeploymentManager$DeploymentImpl this
        start local 1 // io.vertx.core.Handler handler
         0: .line 437
            aload 0 /* this */
            dup
            astore 2
            monitorenter
         1: .line 438
            aload 0 /* this */
            getfield io.vertx.core.impl.DeploymentManager$DeploymentImpl.status:I
            iconst_2
            if_icmpeq 5
         2: .line 439
            aload 0 /* this */
            aload 1 /* handler */
            putfield io.vertx.core.impl.DeploymentManager$DeploymentImpl.undeployHandler:Lio/vertx/core/Handler;
         3: .line 440
            aload 2
            monitorexit
         4: return
         5: .line 437
      StackMap locals: io.vertx.core.impl.DeploymentManager$DeploymentImpl
      StackMap stack:
            aload 2
            monitorexit
         6: goto 9
      StackMap locals:
      StackMap stack: java.lang.Throwable
         7: aload 2
            monitorexit
         8: athrow
         9: .line 443
      StackMap locals:
      StackMap stack:
            aload 1 /* handler */
            aconst_null
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
        10: .line 444
            return
        end local 1 // io.vertx.core.Handler handler
        end local 0 // io.vertx.core.impl.DeploymentManager$DeploymentImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   11     0     this  Lio/vertx/core/impl/DeploymentManager$DeploymentImpl;
            0   11     1  handler  Lio/vertx/core/Handler<Ljava/lang/Void;>;
      Exception table:
        from    to  target  type
           1     4       7  any
           5     6       7  any
           7     8       7  any
    Signature: (Lio/vertx/core/Handler<Ljava/lang/Void;>;)V
    MethodParameters:
         Name  Flags
      handler  

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

  public java.lang.String deploymentID();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.impl.DeploymentManager$DeploymentImpl this
         0: .line 453
            aload 0 /* this */
            getfield io.vertx.core.impl.DeploymentManager$DeploymentImpl.deploymentID:Ljava/lang/String;
            areturn
        end local 0 // io.vertx.core.impl.DeploymentManager$DeploymentImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/impl/DeploymentManager$DeploymentImpl;

  private void lambda$0(io.vertx.core.impl.ContextImpl, java.lang.Throwable, io.vertx.core.impl.ContextInternal, io.vertx.core.Handler, io.vertx.core.impl.DeploymentManager$VerticleHolder, io.vertx.core.AsyncResult);
    descriptor: (Lio/vertx/core/impl/ContextImpl;Ljava/lang/Throwable;Lio/vertx/core/impl/ContextInternal;Lio/vertx/core/Handler;Lio/vertx/core/impl/DeploymentManager$VerticleHolder;Lio/vertx/core/AsyncResult;)V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=5, locals=9, args_size=7
        start local 0 // io.vertx.core.impl.DeploymentManager$DeploymentImpl this
        start local 6 // io.vertx.core.AsyncResult childrenResult
         0: .line 282
            aload 0 /* this */
            dup
            astore 8
            monitorenter
         1: .line 283
            aload 0 /* this */
            iconst_2
            putfield io.vertx.core.impl.DeploymentManager$DeploymentImpl.status:I
         2: .line 284
            aload 0 /* this */
            getfield io.vertx.core.impl.DeploymentManager$DeploymentImpl.undeployHandler:Lio/vertx/core/Handler;
            astore 7 /* handler */
        start local 7 // io.vertx.core.Handler handler
         3: .line 285
            aload 0 /* this */
            aconst_null
            putfield io.vertx.core.impl.DeploymentManager$DeploymentImpl.undeployHandler:Lio/vertx/core/Handler;
         4: .line 282
            aload 8
            monitorexit
         5: goto 8
        end local 7 // io.vertx.core.Handler handler
      StackMap locals: io.vertx.core.impl.DeploymentManager$DeploymentImpl io.vertx.core.impl.ContextImpl java.lang.Throwable io.vertx.core.impl.ContextInternal io.vertx.core.Handler io.vertx.core.impl.DeploymentManager$VerticleHolder io.vertx.core.AsyncResult top io.vertx.core.impl.DeploymentManager$DeploymentImpl
      StackMap stack: java.lang.Throwable
         6: aload 8
            monitorexit
         7: athrow
        start local 7 // io.vertx.core.Handler handler
         8: .line 287
      StackMap locals: io.vertx.core.impl.DeploymentManager$DeploymentImpl io.vertx.core.impl.ContextImpl java.lang.Throwable io.vertx.core.impl.ContextInternal io.vertx.core.Handler io.vertx.core.impl.DeploymentManager$VerticleHolder io.vertx.core.AsyncResult io.vertx.core.Handler
      StackMap stack:
            aload 7 /* handler */
            ifnull 13
         9: .line 289
            aload 7 /* handler */
            aconst_null
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
        10: .line 290
            goto 13
      StackMap locals:
      StackMap stack: java.lang.Exception
        11: astore 8 /* e */
        start local 8 // java.lang.Exception e
        12: .line 291
            aload 1
            aload 8 /* e */
            invokevirtual io.vertx.core.impl.ContextImpl.reportException:(Ljava/lang/Throwable;)V
        end local 8 // java.lang.Exception e
        13: .line 294
      StackMap locals:
      StackMap stack:
            aload 6 /* childrenResult */
            invokeinterface io.vertx.core.AsyncResult.failed:()Z
            ifeq 16
        14: .line 295
            aload 0 /* this */
            getfield io.vertx.core.impl.DeploymentManager$DeploymentImpl.this$0:Lio/vertx/core/impl/DeploymentManager;
            aload 2
            aload 3
            aload 4
            invokevirtual io.vertx.core.impl.DeploymentManager.reportFailure:(Ljava/lang/Throwable;Lio/vertx/core/Context;Lio/vertx/core/Handler;)V
        15: .line 296
            goto 17
        16: .line 297
      StackMap locals:
      StackMap stack:
            aload 5
            aload 0 /* this */
            aload 2
            aload 3
            aload 4
            invokedynamic handle(Lio/vertx/core/impl/DeploymentManager$DeploymentImpl;Ljava/lang/Throwable;Lio/vertx/core/impl/ContextInternal;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/DeploymentManager$DeploymentImpl.lambda$1(Ljava/lang/Throwable;Lio/vertx/core/impl/ContextInternal;Lio/vertx/core/Handler;Lio/vertx/core/AsyncResult;)V (7)
                  (Lio/vertx/core/AsyncResult;)V
            invokevirtual io.vertx.core.impl.DeploymentManager$VerticleHolder.close:(Lio/vertx/core/Handler;)V
        end local 7 // io.vertx.core.Handler handler
        17: .line 299
      StackMap locals:
      StackMap stack:
            return
        end local 6 // io.vertx.core.AsyncResult childrenResult
        end local 0 // io.vertx.core.impl.DeploymentManager$DeploymentImpl this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0   18     0            this  Lio/vertx/core/impl/DeploymentManager$DeploymentImpl;
            0   18     6  childrenResult  Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;
            3    6     7         handler  Lio/vertx/core/Handler<Ljava/lang/Void;>;
            8   17     7         handler  Lio/vertx/core/Handler<Ljava/lang/Void;>;
           12   13     8               e  Ljava/lang/Exception;
      Exception table:
        from    to  target  type
           1     5       6  any
           6     7       6  any
           9    10      11  Class java.lang.Exception

  private void lambda$2(io.vertx.core.impl.Deployment, io.vertx.core.Promise, io.vertx.core.AsyncResult);
    descriptor: (Lio/vertx/core/impl/Deployment;Lio/vertx/core/Promise;Lio/vertx/core/AsyncResult;)V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=2, locals=4, args_size=4
        start local 0 // io.vertx.core.impl.DeploymentManager$DeploymentImpl this
        start local 3 // io.vertx.core.AsyncResult ar
         0: .line 316
            aload 0 /* this */
            getfield io.vertx.core.impl.DeploymentManager$DeploymentImpl.children:Ljava/util/Set;
            aload 1
            invokeinterface java.util.Set.remove:(Ljava/lang/Object;)Z
            pop
         1: .line 317
            aload 2
            aload 3 /* ar */
            invokeinterface io.vertx.core.Promise.handle:(Lio/vertx/core/AsyncResult;)V
         2: .line 318
            return
        end local 3 // io.vertx.core.AsyncResult ar
        end local 0 // io.vertx.core.impl.DeploymentManager$DeploymentImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/vertx/core/impl/DeploymentManager$DeploymentImpl;
            0    3     3    ar  Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;

  private io.vertx.core.Future lambda$3(io.vertx.core.impl.ContextInternal, java.lang.Void);
    descriptor: (Lio/vertx/core/impl/ContextInternal;Ljava/lang/Void;)Lio/vertx/core/Future;
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // io.vertx.core.impl.DeploymentManager$DeploymentImpl this
        start local 2 // java.lang.Void v
         0: .line 332
            aload 0 /* this */
            aload 1
            invokevirtual io.vertx.core.impl.DeploymentManager$DeploymentImpl.doUndeploy:(Lio/vertx/core/impl/ContextInternal;)Lio/vertx/core/Future;
            areturn
        end local 2 // java.lang.Void v
        end local 0 // io.vertx.core.impl.DeploymentManager$DeploymentImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/impl/DeploymentManager$DeploymentImpl;
            0    1     2     v  Ljava/lang/Void;

  private void lambda$4(io.vertx.core.impl.ContextInternal, io.vertx.core.impl.DeploymentManager$VerticleHolder, io.vertx.core.Promise, java.lang.Void);
    descriptor: (Lio/vertx/core/impl/ContextInternal;Lio/vertx/core/impl/DeploymentManager$VerticleHolder;Lio/vertx/core/Promise;Ljava/lang/Void;)V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=4, locals=8, args_size=5
        start local 0 // io.vertx.core.impl.DeploymentManager$DeploymentImpl this
        start local 4 // java.lang.Void v
         0: .line 344
            aload 1
            invokeinterface io.vertx.core.impl.ContextInternal.promise:()Lio/vertx/core/impl/future/PromiseInternal;
            astore 5 /* stopPromise */
        start local 5 // io.vertx.core.Promise stopPromise
         1: .line 345
            aload 5 /* stopPromise */
            invokeinterface io.vertx.core.Promise.future:()Lio/vertx/core/Future;
            astore 6 /* stopFuture */
        start local 6 // io.vertx.core.Future stopFuture
         2: .line 346
            aload 6 /* stopFuture */
            aload 0 /* this */
            aload 2
            aload 3
            invokedynamic handle(Lio/vertx/core/impl/DeploymentManager$DeploymentImpl;Lio/vertx/core/impl/DeploymentManager$VerticleHolder;Lio/vertx/core/Promise;)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/DeploymentManager$DeploymentImpl.lambda$5(Lio/vertx/core/impl/DeploymentManager$VerticleHolder;Lio/vertx/core/Promise;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
         3: .line 361
            aload 2
            getfield io.vertx.core.impl.DeploymentManager$VerticleHolder.verticle:Lio/vertx/core/Verticle;
            aload 5 /* stopPromise */
            invokeinterface io.vertx.core.Verticle.stop:(Lio/vertx/core/Promise;)V
         4: .line 362
            goto 8
      StackMap locals: io.vertx.core.impl.DeploymentManager$DeploymentImpl io.vertx.core.impl.ContextInternal io.vertx.core.impl.DeploymentManager$VerticleHolder io.vertx.core.Promise java.lang.Void io.vertx.core.Promise io.vertx.core.Future
      StackMap stack: java.lang.Throwable
         5: astore 7 /* t */
        start local 7 // java.lang.Throwable t
         6: .line 363
            aload 5 /* stopPromise */
            aload 7 /* t */
            invokeinterface io.vertx.core.Promise.tryFail:(Ljava/lang/Throwable;)Z
            ifne 8
         7: .line 364
            aload 1
            aload 7 /* t */
            invokeinterface io.vertx.core.impl.ContextInternal.reportException:(Ljava/lang/Throwable;)V
        end local 7 // java.lang.Throwable t
        end local 6 // io.vertx.core.Future stopFuture
        end local 5 // io.vertx.core.Promise stopPromise
         8: .line 367
      StackMap locals:
      StackMap stack:
            return
        end local 4 // java.lang.Void v
        end local 0 // io.vertx.core.impl.DeploymentManager$DeploymentImpl this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    9     0         this  Lio/vertx/core/impl/DeploymentManager$DeploymentImpl;
            0    9     4            v  Ljava/lang/Void;
            1    8     5  stopPromise  Lio/vertx/core/Promise<Ljava/lang/Void;>;
            2    8     6   stopFuture  Lio/vertx/core/Future<Ljava/lang/Void;>;
            6    8     7            t  Ljava/lang/Throwable;
      Exception table:
        from    to  target  type
           3     4       5  Class java.lang.Throwable

  private static io.vertx.core.Future lambda$7(io.vertx.core.Handler, java.lang.Void);
    descriptor: (Lio/vertx/core/Handler;Ljava/lang/Void;)Lio/vertx/core/Future;
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
        start local 1 // java.lang.Void v
         0: .line 376
            aload 0
            aconst_null
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
         1: .line 377
            invokestatic io.vertx.core.Future.succeededFuture:()Lio/vertx/core/Future;
            areturn
        end local 1 // java.lang.Void v
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     1     v  Ljava/lang/Void;

  private static io.vertx.core.Future lambda$8(io.vertx.core.Handler, java.lang.Throwable);
    descriptor: (Lio/vertx/core/Handler;Ljava/lang/Throwable;)Lio/vertx/core/Future;
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
        start local 1 // java.lang.Throwable v
         0: .line 379
            aload 0
            aconst_null
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
         1: .line 380
            invokestatic io.vertx.core.Future.succeededFuture:()Lio/vertx/core/Future;
            areturn
        end local 1 // java.lang.Throwable v
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     1     v  Ljava/lang/Throwable;

  private void lambda$1(java.lang.Throwable, io.vertx.core.impl.ContextInternal, io.vertx.core.Handler, io.vertx.core.AsyncResult);
    descriptor: (Ljava/lang/Throwable;Lio/vertx/core/impl/ContextInternal;Lio/vertx/core/Handler;Lio/vertx/core/AsyncResult;)V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=4, locals=5, args_size=5
        start local 0 // io.vertx.core.impl.DeploymentManager$DeploymentImpl this
        start local 4 // io.vertx.core.AsyncResult closeHookAsyncResult
         0: .line 297
            aload 0 /* this */
            getfield io.vertx.core.impl.DeploymentManager$DeploymentImpl.this$0:Lio/vertx/core/impl/DeploymentManager;
            aload 1
            aload 2
            aload 3
            invokevirtual io.vertx.core.impl.DeploymentManager.reportFailure:(Ljava/lang/Throwable;Lio/vertx/core/Context;Lio/vertx/core/Handler;)V
            return
        end local 4 // io.vertx.core.AsyncResult closeHookAsyncResult
        end local 0 // io.vertx.core.impl.DeploymentManager$DeploymentImpl this
      LocalVariableTable:
        Start  End  Slot                  Name  Signature
            0    1     0                  this  Lio/vertx/core/impl/DeploymentManager$DeploymentImpl;
            0    1     4  closeHookAsyncResult  Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;

  private void lambda$5(io.vertx.core.impl.DeploymentManager$VerticleHolder, io.vertx.core.Promise, io.vertx.core.AsyncResult);
    descriptor: (Lio/vertx/core/impl/DeploymentManager$VerticleHolder;Lio/vertx/core/Promise;Lio/vertx/core/AsyncResult;)V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=3, locals=4, args_size=4
        start local 0 // io.vertx.core.impl.DeploymentManager$DeploymentImpl this
        start local 3 // io.vertx.core.AsyncResult ar
         0: .line 347
            aload 0 /* this */
            getfield io.vertx.core.impl.DeploymentManager$DeploymentImpl.this$0:Lio/vertx/core/impl/DeploymentManager;
            getfield io.vertx.core.impl.DeploymentManager.deployments:Ljava/util/Map;
            aload 0 /* this */
            getfield io.vertx.core.impl.DeploymentManager$DeploymentImpl.deploymentID:Ljava/lang/String;
            invokeinterface java.util.Map.remove:(Ljava/lang/Object;)Ljava/lang/Object;
            pop
         1: .line 348
            aload 1
            aload 3 /* ar */
            aload 2
            invokedynamic handle(Lio/vertx/core/AsyncResult;Lio/vertx/core/Promise;)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/DeploymentManager$DeploymentImpl.lambda$6(Lio/vertx/core/AsyncResult;Lio/vertx/core/Promise;Lio/vertx/core/AsyncResult;)V (6)
                  (Lio/vertx/core/AsyncResult;)V
            invokevirtual io.vertx.core.impl.DeploymentManager$VerticleHolder.close:(Lio/vertx/core/Handler;)V
         2: .line 359
            return
        end local 3 // io.vertx.core.AsyncResult ar
        end local 0 // io.vertx.core.impl.DeploymentManager$DeploymentImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/vertx/core/impl/DeploymentManager$DeploymentImpl;
            0    3     3    ar  Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;

  private static void lambda$6(io.vertx.core.AsyncResult, io.vertx.core.Promise, io.vertx.core.AsyncResult);
    descriptor: (Lio/vertx/core/AsyncResult;Lio/vertx/core/Promise;Lio/vertx/core/AsyncResult;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
        start local 2 // io.vertx.core.AsyncResult ar2
         0: .line 349
            aload 2 /* ar2 */
            invokeinterface io.vertx.core.AsyncResult.failed:()Z
            ifeq 2
         1: .line 351
            getstatic io.vertx.core.impl.DeploymentManager.log:Lio/vertx/core/impl/logging/Logger;
            ldc "Failed to run close hook"
            aload 2 /* 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
         2: .line 353
      StackMap locals:
      StackMap stack:
            aload 0
            invokeinterface io.vertx.core.AsyncResult.succeeded:()Z
            ifeq 5
         3: .line 354
            aload 1
            invokeinterface io.vertx.core.Promise.complete:()V
         4: .line 355
            goto 7
      StackMap locals:
      StackMap stack:
         5: aload 0
            invokeinterface io.vertx.core.AsyncResult.failed:()Z
            ifeq 7
         6: .line 356
            aload 1
            aload 0
            invokeinterface io.vertx.core.AsyncResult.cause:()Ljava/lang/Throwable;
            invokeinterface io.vertx.core.Promise.fail:(Ljava/lang/Throwable;)V
         7: .line 358
      StackMap locals:
      StackMap stack:
            return
        end local 2 // io.vertx.core.AsyncResult ar2
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     2   ar2  Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;
}
SourceFile: "DeploymentManager.java"
NestHost: io.vertx.core.impl.DeploymentManager
InnerClasses:
  private DeploymentImpl = io.vertx.core.impl.DeploymentManager$DeploymentImpl of io.vertx.core.impl.DeploymentManager
  VerticleHolder = io.vertx.core.impl.DeploymentManager$VerticleHolder of io.vertx.core.impl.DeploymentManager
  public final Lookup = java.lang.invoke.MethodHandles$Lookup of java.lang.invoke.MethodHandles