public class io.vertx.core.impl.JavaVerticleFactory implements io.vertx.core.spi.VerticleFactory
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: io.vertx.core.impl.JavaVerticleFactory
  super_class: java.lang.Object
{
  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.impl.JavaVerticleFactory this
         0: .line 24
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
            return
        end local 0 // io.vertx.core.impl.JavaVerticleFactory this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/impl/JavaVerticleFactory;

  public java.lang.String prefix();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.impl.JavaVerticleFactory this
         0: .line 28
            ldc "java"
            areturn
        end local 0 // io.vertx.core.impl.JavaVerticleFactory this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/impl/JavaVerticleFactory;

  public void createVerticle(java.lang.String, java.lang.ClassLoader, io.vertx.core.Promise<java.util.concurrent.Callable<io.vertx.core.Verticle>>);
    descriptor: (Ljava/lang/String;Ljava/lang/ClassLoader;Lio/vertx/core/Promise;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=7, args_size=4
        start local 0 // io.vertx.core.impl.JavaVerticleFactory this
        start local 1 // java.lang.String verticleName
        start local 2 // java.lang.ClassLoader classLoader
        start local 3 // io.vertx.core.Promise promise
         0: .line 33
            aload 1 /* verticleName */
            invokestatic io.vertx.core.spi.VerticleFactory.removePrefix:(Ljava/lang/String;)Ljava/lang/String;
            astore 1 /* verticleName */
         1: .line 36
            aload 1 /* verticleName */
            ldc ".java"
            invokevirtual java.lang.String.endsWith:(Ljava/lang/String;)Z
            ifeq 6
         2: .line 37
            new io.vertx.core.impl.verticle.CompilingClassLoader
            dup
            aload 2 /* classLoader */
            aload 1 /* verticleName */
            invokespecial io.vertx.core.impl.verticle.CompilingClassLoader.<init>:(Ljava/lang/ClassLoader;Ljava/lang/String;)V
            astore 5 /* compilingLoader */
        start local 5 // io.vertx.core.impl.verticle.CompilingClassLoader compilingLoader
         3: .line 38
            aload 5 /* compilingLoader */
            invokevirtual io.vertx.core.impl.verticle.CompilingClassLoader.resolveMainClassName:()Ljava/lang/String;
            astore 6 /* className */
        start local 6 // java.lang.String className
         4: .line 39
            aload 5 /* compilingLoader */
            aload 6 /* className */
            invokevirtual io.vertx.core.impl.verticle.CompilingClassLoader.loadClass:(Ljava/lang/String;)Ljava/lang/Class;
            astore 4 /* clazz */
        end local 6 // java.lang.String className
        end local 5 // io.vertx.core.impl.verticle.CompilingClassLoader compilingLoader
        start local 4 // java.lang.Class clazz
         5: .line 40
            goto 11
        end local 4 // java.lang.Class clazz
         6: .line 41
      StackMap locals:
      StackMap stack:
            aload 2 /* classLoader */
            aload 1 /* verticleName */
            invokevirtual java.lang.ClassLoader.loadClass:(Ljava/lang/String;)Ljava/lang/Class;
            astore 4 /* clazz */
        start local 4 // java.lang.Class clazz
         7: .line 43
            goto 11
        end local 4 // java.lang.Class clazz
      StackMap locals:
      StackMap stack: java.lang.ClassNotFoundException
         8: astore 5 /* e */
        start local 5 // java.lang.ClassNotFoundException e
         9: .line 44
            aload 3 /* promise */
            aload 5 /* e */
            invokeinterface io.vertx.core.Promise.fail:(Ljava/lang/Throwable;)V
        10: .line 45
            return
        end local 5 // java.lang.ClassNotFoundException e
        start local 4 // java.lang.Class clazz
        11: .line 47
      StackMap locals: java.lang.Class
      StackMap stack:
            aload 3 /* promise */
            aload 4 /* clazz */
            dup
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            pop
            invokedynamic call(Ljava/lang/Class;)Ljava/util/concurrent/Callable;
              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;
                  java/lang/Class.newInstance()Ljava/lang/Object; (5)
                  ()Lio/vertx/core/Verticle;
            invokeinterface io.vertx.core.Promise.complete:(Ljava/lang/Object;)V
        12: .line 48
            return
        end local 4 // java.lang.Class clazz
        end local 3 // io.vertx.core.Promise promise
        end local 2 // java.lang.ClassLoader classLoader
        end local 1 // java.lang.String verticleName
        end local 0 // io.vertx.core.impl.JavaVerticleFactory this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0   13     0             this  Lio/vertx/core/impl/JavaVerticleFactory;
            0   13     1     verticleName  Ljava/lang/String;
            0   13     2      classLoader  Ljava/lang/ClassLoader;
            0   13     3          promise  Lio/vertx/core/Promise<Ljava/util/concurrent/Callable<Lio/vertx/core/Verticle;>;>;
            5    6     4            clazz  Ljava/lang/Class<Lio/vertx/core/Verticle;>;
            7    8     4            clazz  Ljava/lang/Class<Lio/vertx/core/Verticle;>;
           11   13     4            clazz  Ljava/lang/Class<Lio/vertx/core/Verticle;>;
            3    5     5  compilingLoader  Lio/vertx/core/impl/verticle/CompilingClassLoader;
            4    5     6        className  Ljava/lang/String;
            9   11     5                e  Ljava/lang/ClassNotFoundException;
      Exception table:
        from    to  target  type
           1     7       8  Class java.lang.ClassNotFoundException
    Signature: (Ljava/lang/String;Ljava/lang/ClassLoader;Lio/vertx/core/Promise<Ljava/util/concurrent/Callable<Lio/vertx/core/Verticle;>;>;)V
    MethodParameters:
              Name  Flags
      verticleName  
      classLoader   
      promise       
}
SourceFile: "JavaVerticleFactory.java"
InnerClasses:
  public final Lookup = java.lang.invoke.MethodHandles$Lookup of java.lang.invoke.MethodHandles