class io.vertx.core.http.impl.NettyFileUploadDataFactory extends io.netty.handler.codec.http.multipart.DefaultHttpDataFactory
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: io.vertx.core.http.impl.NettyFileUploadDataFactory
  super_class: io.netty.handler.codec.http.multipart.DefaultHttpDataFactory
{
  final io.vertx.core.Context context;
    descriptor: Lio/vertx/core/Context;
    flags: (0x0010) ACC_FINAL

  final io.vertx.core.http.HttpServerRequest request;
    descriptor: Lio/vertx/core/http/HttpServerRequest;
    flags: (0x0010) ACC_FINAL

  final java.util.function.Supplier<io.vertx.core.Handler<io.vertx.core.http.HttpServerFileUpload>> lazyUploadHandler;
    descriptor: Ljava/util/function/Supplier;
    flags: (0x0010) ACC_FINAL
    Signature: Ljava/util/function/Supplier<Lio/vertx/core/Handler<Lio/vertx/core/http/HttpServerFileUpload;>;>;

  void <init>(io.vertx.core.Context, io.vertx.core.http.HttpServerRequest, java.util.function.Supplier<io.vertx.core.Handler<io.vertx.core.http.HttpServerFileUpload>>);
    descriptor: (Lio/vertx/core/Context;Lio/vertx/core/http/HttpServerRequest;Ljava/util/function/Supplier;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=4, args_size=4
        start local 0 // io.vertx.core.http.impl.NettyFileUploadDataFactory this
        start local 1 // io.vertx.core.Context context
        start local 2 // io.vertx.core.http.HttpServerRequest request
        start local 3 // java.util.function.Supplier lazyUploadHandler
         0: .line 36
            aload 0 /* this */
            iconst_0
            invokespecial io.netty.handler.codec.http.multipart.DefaultHttpDataFactory.<init>:(Z)V
         1: .line 37
            aload 0 /* this */
            aload 1 /* context */
            putfield io.vertx.core.http.impl.NettyFileUploadDataFactory.context:Lio/vertx/core/Context;
         2: .line 38
            aload 0 /* this */
            aload 2 /* request */
            putfield io.vertx.core.http.impl.NettyFileUploadDataFactory.request:Lio/vertx/core/http/HttpServerRequest;
         3: .line 39
            aload 0 /* this */
            aload 3 /* lazyUploadHandler */
            putfield io.vertx.core.http.impl.NettyFileUploadDataFactory.lazyUploadHandler:Ljava/util/function/Supplier;
         4: .line 40
            return
        end local 3 // java.util.function.Supplier lazyUploadHandler
        end local 2 // io.vertx.core.http.HttpServerRequest request
        end local 1 // io.vertx.core.Context context
        end local 0 // io.vertx.core.http.impl.NettyFileUploadDataFactory this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0    5     0               this  Lio/vertx/core/http/impl/NettyFileUploadDataFactory;
            0    5     1            context  Lio/vertx/core/Context;
            0    5     2            request  Lio/vertx/core/http/HttpServerRequest;
            0    5     3  lazyUploadHandler  Ljava/util/function/Supplier<Lio/vertx/core/Handler<Lio/vertx/core/http/HttpServerFileUpload;>;>;
    Signature: (Lio/vertx/core/Context;Lio/vertx/core/http/HttpServerRequest;Ljava/util/function/Supplier<Lio/vertx/core/Handler<Lio/vertx/core/http/HttpServerFileUpload;>;>;)V
    MethodParameters:
                   Name  Flags
      context            
      request            
      lazyUploadHandler  

  public io.netty.handler.codec.http.multipart.FileUpload createFileUpload(io.netty.handler.codec.http.HttpRequest, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.nio.charset.Charset, long);
    descriptor: (Lio/netty/handler/codec/http/HttpRequest;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/nio/charset/Charset;J)Lio/netty/handler/codec/http/multipart/FileUpload;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=11, locals=12, args_size=8
        start local 0 // io.vertx.core.http.impl.NettyFileUploadDataFactory this
        start local 1 // io.netty.handler.codec.http.HttpRequest httpRequest
        start local 2 // java.lang.String name
        start local 3 // java.lang.String filename
        start local 4 // java.lang.String contentType
        start local 5 // java.lang.String contentTransferEncoding
        start local 6 // java.nio.charset.Charset charset
        start local 7 // long size
         0: .line 44
            new io.vertx.core.http.impl.NettyFileUpload
            dup
            aload 0 /* this */
            getfield io.vertx.core.http.impl.NettyFileUploadDataFactory.context:Lio/vertx/core/Context;
            aload 0 /* this */
            getfield io.vertx.core.http.impl.NettyFileUploadDataFactory.request:Lio/vertx/core/http/HttpServerRequest;
            aload 2 /* name */
            aload 3 /* filename */
            aload 4 /* contentType */
         1: .line 45
            aload 5 /* contentTransferEncoding */
            aload 6 /* charset */
         2: .line 44
            invokespecial io.vertx.core.http.impl.NettyFileUpload.<init>:(Lio/vertx/core/Context;Lio/vertx/core/http/HttpServerRequest;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/nio/charset/Charset;)V
            astore 9 /* nettyUpload */
        start local 9 // io.vertx.core.http.impl.NettyFileUpload nettyUpload
         3: .line 46
            new io.vertx.core.http.impl.HttpServerFileUploadImpl
            dup
            aload 0 /* this */
            getfield io.vertx.core.http.impl.NettyFileUploadDataFactory.context:Lio/vertx/core/Context;
            aload 9 /* nettyUpload */
            aload 2 /* name */
            aload 3 /* filename */
            aload 4 /* contentType */
            aload 5 /* contentTransferEncoding */
            aload 6 /* charset */
         4: .line 47
            lload 7 /* size */
         5: .line 46
            invokespecial io.vertx.core.http.impl.HttpServerFileUploadImpl.<init>:(Lio/vertx/core/Context;Lio/vertx/core/streams/ReadStream;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/nio/charset/Charset;J)V
            astore 10 /* upload */
        start local 10 // io.vertx.core.http.impl.HttpServerFileUploadImpl upload
         6: .line 48
            aload 0 /* this */
            getfield io.vertx.core.http.impl.NettyFileUploadDataFactory.lazyUploadHandler:Ljava/util/function/Supplier;
            invokeinterface java.util.function.Supplier.get:()Ljava/lang/Object;
            checkcast io.vertx.core.Handler
            astore 11 /* uploadHandler */
        start local 11 // io.vertx.core.Handler uploadHandler
         7: .line 49
            aload 11 /* uploadHandler */
            ifnull 9
         8: .line 50
            aload 11 /* uploadHandler */
            aload 10 /* upload */
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
         9: .line 52
      StackMap locals: io.vertx.core.http.impl.NettyFileUpload io.vertx.core.http.impl.HttpServerFileUploadImpl io.vertx.core.Handler
      StackMap stack:
            aload 9 /* nettyUpload */
            areturn
        end local 11 // io.vertx.core.Handler uploadHandler
        end local 10 // io.vertx.core.http.impl.HttpServerFileUploadImpl upload
        end local 9 // io.vertx.core.http.impl.NettyFileUpload nettyUpload
        end local 7 // long size
        end local 6 // java.nio.charset.Charset charset
        end local 5 // java.lang.String contentTransferEncoding
        end local 4 // java.lang.String contentType
        end local 3 // java.lang.String filename
        end local 2 // java.lang.String name
        end local 1 // io.netty.handler.codec.http.HttpRequest httpRequest
        end local 0 // io.vertx.core.http.impl.NettyFileUploadDataFactory this
      LocalVariableTable:
        Start  End  Slot                     Name  Signature
            0   10     0                     this  Lio/vertx/core/http/impl/NettyFileUploadDataFactory;
            0   10     1              httpRequest  Lio/netty/handler/codec/http/HttpRequest;
            0   10     2                     name  Ljava/lang/String;
            0   10     3                 filename  Ljava/lang/String;
            0   10     4              contentType  Ljava/lang/String;
            0   10     5  contentTransferEncoding  Ljava/lang/String;
            0   10     6                  charset  Ljava/nio/charset/Charset;
            0   10     7                     size  J
            3   10     9              nettyUpload  Lio/vertx/core/http/impl/NettyFileUpload;
            6   10    10                   upload  Lio/vertx/core/http/impl/HttpServerFileUploadImpl;
            7   10    11            uploadHandler  Lio/vertx/core/Handler<Lio/vertx/core/http/HttpServerFileUpload;>;
    MethodParameters:
                         Name  Flags
      httpRequest              
      name                     
      filename                 
      contentType              
      contentTransferEncoding  
      charset                  
      size                     
}
SourceFile: "NettyFileUploadDataFactory.java"