Package io.vertx.mutiny.ext.web.handler
Class ResponseTimeHandler
- java.lang.Object
 - 
- io.vertx.mutiny.ext.web.handler.ResponseTimeHandler
 
 
- 
- All Implemented Interfaces:
 io.vertx.core.Handler<RoutingContext>,Consumer<RoutingContext>
public class ResponseTimeHandler extends Object implements io.vertx.core.Handler<RoutingContext>, Consumer<RoutingContext>
Handler which adds a header `x-response-time` in the response of matching requests containing the time taken in ms to process the request. 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<ResponseTimeHandler>__TYPE_ARG 
- 
Constructor Summary
Constructors Constructor Description ResponseTimeHandler(io.vertx.ext.web.handler.ResponseTimeHandler delegate)ResponseTimeHandler(Object delegate) 
- 
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaccept(RoutingContext item)static ResponseTimeHandlercreate()booleanequals(Object o)io.vertx.ext.web.handler.ResponseTimeHandlergetDelegate()voidhandle(RoutingContext arg0)inthashCode()static ResponseTimeHandlernewInstance(io.vertx.ext.web.handler.ResponseTimeHandler arg)StringtoString() 
 - 
 
- 
- 
Field Detail
- 
__TYPE_ARG
public static final TypeArg<ResponseTimeHandler> __TYPE_ARG
 
 - 
 
- 
Constructor Detail
- 
ResponseTimeHandler
public ResponseTimeHandler(io.vertx.ext.web.handler.ResponseTimeHandler delegate)
 
- 
ResponseTimeHandler
public ResponseTimeHandler(Object delegate)
 
 - 
 
- 
Method Detail
- 
getDelegate
public io.vertx.ext.web.handler.ResponseTimeHandler getDelegate()
 
- 
handle
public void handle(RoutingContext arg0)
- Specified by:
 handlein interfaceio.vertx.core.Handler<RoutingContext>
 
- 
create
public static ResponseTimeHandler create()
- Returns:
 - the handler
 
 
- 
accept
public void accept(RoutingContext item)
- Specified by:
 acceptin interfaceConsumer<RoutingContext>
 
- 
newInstance
public static ResponseTimeHandler newInstance(io.vertx.ext.web.handler.ResponseTimeHandler arg)
 
 - 
 
 -