class io.vertx.service.ServiceVerticleFactory$1 extends io.vertx.core.AbstractVerticle
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: io.vertx.service.ServiceVerticleFactory$1
  super_class: io.vertx.core.AbstractVerticle
{
  final io.vertx.service.ServiceVerticleFactory this$0;
    descriptor: Lio/vertx/service/ServiceVerticleFactory;
    flags: (0x1010) ACC_FINAL, ACC_SYNTHETIC

  private final io.vertx.core.json.JsonObject val$serviceOptions;
    descriptor: Lio/vertx/core/json/JsonObject;
    flags: (0x1012) ACC_PRIVATE, ACC_FINAL, ACC_SYNTHETIC

  private final java.lang.String val$main;
    descriptor: Ljava/lang/String;
    flags: (0x1012) ACC_PRIVATE, ACC_FINAL, ACC_SYNTHETIC

  void <init>(io.vertx.service.ServiceVerticleFactory, io.vertx.core.json.JsonObject, java.lang.String);
    descriptor: (Lio/vertx/service/ServiceVerticleFactory;Lio/vertx/core/json/JsonObject;Ljava/lang/String;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=4, args_size=4
        start local 0 // io.vertx.service.ServiceVerticleFactory$1 this
         0: .line 85
            aload 0 /* this */
            aload 1
            putfield io.vertx.service.ServiceVerticleFactory$1.this$0:Lio/vertx/service/ServiceVerticleFactory;
            aload 0 /* this */
            aload 2
            putfield io.vertx.service.ServiceVerticleFactory$1.val$serviceOptions:Lio/vertx/core/json/JsonObject;
            aload 0 /* this */
            aload 3
            putfield io.vertx.service.ServiceVerticleFactory$1.val$main:Ljava/lang/String;
            aload 0 /* this */
            invokespecial io.vertx.core.AbstractVerticle.<init>:()V
            return
        end local 0 // io.vertx.service.ServiceVerticleFactory$1 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/service/ServiceVerticleFactory$1;
    MethodParameters:
                    Name  Flags
      this$0              final
      val$serviceOptions  final
      val$main            final

  public void start(io.vertx.core.Promise<java.lang.Void>);
    descriptor: (Lio/vertx/core/Promise;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // io.vertx.service.ServiceVerticleFactory$1 this
        start local 1 // io.vertx.core.Promise startPromise
         0: .line 88
            new io.vertx.core.DeploymentOptions
            dup
            aload 0 /* this */
            getfield io.vertx.service.ServiceVerticleFactory$1.val$serviceOptions:Lio/vertx/core/json/JsonObject;
            invokespecial io.vertx.core.DeploymentOptions.<init>:(Lio/vertx/core/json/JsonObject;)V
            astore 2 /* dopt */
        start local 2 // io.vertx.core.DeploymentOptions dopt
         1: .line 89
            aload 2 /* dopt */
            invokevirtual io.vertx.core.DeploymentOptions.getConfig:()Lio/vertx/core/json/JsonObject;
            ifnonnull 3
         2: .line 90
            aload 2 /* dopt */
            new io.vertx.core.json.JsonObject
            dup
            invokespecial io.vertx.core.json.JsonObject.<init>:()V
            invokevirtual io.vertx.core.DeploymentOptions.setConfig:(Lio/vertx/core/json/JsonObject;)Lio/vertx/core/DeploymentOptions;
            pop
         3: .line 92
      StackMap locals: io.vertx.core.DeploymentOptions
      StackMap stack:
            aload 2 /* dopt */
            invokevirtual io.vertx.core.DeploymentOptions.getConfig:()Lio/vertx/core/json/JsonObject;
            aload 0 /* this */
            getfield io.vertx.service.ServiceVerticleFactory$1.context:Lio/vertx/core/Context;
            invokeinterface io.vertx.core.Context.config:()Lio/vertx/core/json/JsonObject;
            invokevirtual io.vertx.core.json.JsonObject.mergeIn:(Lio/vertx/core/json/JsonObject;)Lio/vertx/core/json/JsonObject;
            pop
         4: .line 93
            aload 0 /* this */
            getfield io.vertx.service.ServiceVerticleFactory$1.vertx:Lio/vertx/core/Vertx;
            aload 0 /* this */
            getfield io.vertx.service.ServiceVerticleFactory$1.val$main:Ljava/lang/String;
            aload 2 /* dopt */
            aload 1 /* startPromise */
            invokedynamic handle(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/service/ServiceVerticleFactory$1.lambda$0(Lio/vertx/core/Promise;Lio/vertx/core/AsyncResult;)V (6)
                  (Lio/vertx/core/AsyncResult;)V
            invokeinterface io.vertx.core.Vertx.deployVerticle:(Ljava/lang/String;Lio/vertx/core/DeploymentOptions;Lio/vertx/core/Handler;)V
         5: .line 100
            return
        end local 2 // io.vertx.core.DeploymentOptions dopt
        end local 1 // io.vertx.core.Promise startPromise
        end local 0 // io.vertx.service.ServiceVerticleFactory$1 this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    6     0          this  Lio/vertx/service/ServiceVerticleFactory$1;
            0    6     1  startPromise  Lio/vertx/core/Promise<Ljava/lang/Void;>;
            1    6     2          dopt  Lio/vertx/core/DeploymentOptions;
    Signature: (Lio/vertx/core/Promise<Ljava/lang/Void;>;)V
    MethodParameters:
              Name  Flags
      startPromise  

  private static void lambda$0(io.vertx.core.Promise, io.vertx.core.AsyncResult);
    descriptor: (Lio/vertx/core/Promise;Lio/vertx/core/AsyncResult;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
        start local 1 // io.vertx.core.AsyncResult ar
         0: .line 94
            aload 1 /* ar */
            invokeinterface io.vertx.core.AsyncResult.succeeded:()Z
            ifeq 3
         1: .line 95
            aload 0
            invokeinterface io.vertx.core.Promise.complete:()V
         2: .line 96
            goto 4
         3: .line 97
      StackMap locals:
      StackMap stack:
            aload 0
            aload 1 /* ar */
            invokeinterface io.vertx.core.AsyncResult.cause:()Ljava/lang/Throwable;
            invokeinterface io.vertx.core.Promise.fail:(Ljava/lang/Throwable;)V
         4: .line 99
      StackMap locals:
      StackMap stack:
            return
        end local 1 // io.vertx.core.AsyncResult ar
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     1    ar  Lio/vertx/core/AsyncResult<Ljava/lang/String;>;
}
SourceFile: "ServiceVerticleFactory.java"
EnclosingMethod: io.vertx.service.ServiceVerticleFactory.lambda$0:(Lio/vertx/core/json/JsonObject;Ljava/lang/String;)Lio/vertx/core/Verticle;
NestHost: io.vertx.service.ServiceVerticleFactory
InnerClasses:
  io.vertx.service.ServiceVerticleFactory$1
  public final Lookup = java.lang.invoke.MethodHandles$Lookup of java.lang.invoke.MethodHandles