public interface io.vertx.ext.web.handler.TimeoutHandler extends io.vertx.core.Handler<io.vertx.ext.web.RoutingContext>
  minor version: 0
  major version: 59
  flags: flags: (0x0601) ACC_PUBLIC, ACC_INTERFACE, ACC_ABSTRACT
  this_class: io.vertx.ext.web.handler.TimeoutHandler
  super_class: java.lang.Object
{
  public static final long DEFAULT_TIMEOUT;
    descriptor: J
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 5000

  public static final int DEFAULT_ERRORCODE;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 503

  public static io.vertx.ext.web.handler.TimeoutHandler create();
    descriptor: ()Lio/vertx/ext/web/handler/TimeoutHandler;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=5, locals=0, args_size=0
         0: .line 49
            new io.vertx.ext.web.handler.impl.TimeoutHandlerImpl
            dup
            ldc 5000
            sipush 503
            invokespecial io.vertx.ext.web.handler.impl.TimeoutHandlerImpl.<init>:(JI)V
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public static io.vertx.ext.web.handler.TimeoutHandler create(long);
    descriptor: (J)Lio/vertx/ext/web/handler/TimeoutHandler;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=5, locals=2, args_size=1
        start local 0 // long timeout
         0: .line 59
            new io.vertx.ext.web.handler.impl.TimeoutHandlerImpl
            dup
            lload 0 /* timeout */
            sipush 503
            invokespecial io.vertx.ext.web.handler.impl.TimeoutHandlerImpl.<init>:(JI)V
            areturn
        end local 0 // long timeout
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0  timeout  J
    MethodParameters:
         Name  Flags
      timeout  

  public static io.vertx.ext.web.handler.TimeoutHandler create(long, int);
    descriptor: (JI)Lio/vertx/ext/web/handler/TimeoutHandler;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // long timeout
        start local 2 // int errorCode
         0: .line 69
            new io.vertx.ext.web.handler.impl.TimeoutHandlerImpl
            dup
            lload 0 /* timeout */
            iload 2 /* errorCode */
            invokespecial io.vertx.ext.web.handler.impl.TimeoutHandlerImpl.<init>:(JI)V
            areturn
        end local 2 // int errorCode
        end local 0 // long timeout
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0    timeout  J
            0    1     2  errorCode  I
    MethodParameters:
           Name  Flags
      timeout    
      errorCode  
}
Signature: Ljava/lang/Object;Lio/vertx/core/Handler<Lio/vertx/ext/web/RoutingContext;>;
SourceFile: "TimeoutHandler.java"
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.VertxGen()