Package io.vertx.mutiny.ext.web.handler
Class TimeoutHandler
- java.lang.Object
-
- io.vertx.mutiny.ext.web.handler.TimeoutHandler
-
- All Implemented Interfaces:
io.vertx.core.Handler<RoutingContext>,Consumer<RoutingContext>
public class TimeoutHandler extends Object implements io.vertx.core.Handler<RoutingContext>, Consumer<RoutingContext>
Handler that will timeout requests if the response has not been written after a certain time. Timeout requests will be ended with an HTTP status code `503`. NOTE: This class has been automatically generated from theoriginalnon Mutiny-ified interface using Vert.x codegen.
-
-
Field Summary
Fields Modifier and Type Field Description static TypeArg<TimeoutHandler>__TYPE_ARGstatic intDEFAULT_ERRORCODEThe default error codestatic longDEFAULT_TIMEOUTThe default timeout, in ms
-
Constructor Summary
Constructors Constructor Description TimeoutHandler(io.vertx.ext.web.handler.TimeoutHandler delegate)TimeoutHandler(Object delegate)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaccept(RoutingContext item)static TimeoutHandlercreate()static TimeoutHandlercreate(long timeout)static TimeoutHandlercreate(long timeout, int errorCode)booleanequals(Object o)io.vertx.ext.web.handler.TimeoutHandlergetDelegate()voidhandle(RoutingContext arg0)inthashCode()static TimeoutHandlernewInstance(io.vertx.ext.web.handler.TimeoutHandler arg)StringtoString()
-
-
-
Field Detail
-
__TYPE_ARG
public static final TypeArg<TimeoutHandler> __TYPE_ARG
-
DEFAULT_TIMEOUT
public static final long DEFAULT_TIMEOUT
The default timeout, in ms- See Also:
- Constant Field Values
-
DEFAULT_ERRORCODE
public static final int DEFAULT_ERRORCODE
The default error code- See Also:
- Constant Field Values
-
-
Constructor Detail
-
TimeoutHandler
public TimeoutHandler(io.vertx.ext.web.handler.TimeoutHandler delegate)
-
TimeoutHandler
public TimeoutHandler(Object delegate)
-
-
Method Detail
-
getDelegate
public io.vertx.ext.web.handler.TimeoutHandler getDelegate()
-
handle
public void handle(RoutingContext arg0)
- Specified by:
handlein interfaceio.vertx.core.Handler<RoutingContext>
-
create
public static TimeoutHandler create()
- Returns:
- the handler
-
create
public static TimeoutHandler create(long timeout)
- Parameters:
timeout- the timeout, in ms- Returns:
- the handler
-
create
public static TimeoutHandler create(long timeout, int errorCode)
- Parameters:
timeout- the timeout, in mserrorCode-- Returns:
- the handler
-
accept
public void accept(RoutingContext item)
- Specified by:
acceptin interfaceConsumer<RoutingContext>
-
newInstance
public static TimeoutHandler newInstance(io.vertx.ext.web.handler.TimeoutHandler arg)
-
-