Package io.vertx.rxjava3.ext.web.handler
Class ResponseTimeHandler
- java.lang.Object
-
- io.vertx.rxjava3.ext.web.handler.ResponseTimeHandler
-
- All Implemented Interfaces:
Handler<RoutingContext>
,PlatformHandler
public class ResponseTimeHandler extends Object implements PlatformHandler, Handler<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 the
original
non RX-ified interface using Vert.x codegen.
-
-
Field Summary
Fields Modifier and Type Field Description static io.vertx.lang.rx.TypeArg<ResponseTimeHandler>
__TYPE_ARG
-
Constructor Summary
Constructors Constructor Description ResponseTimeHandler(ResponseTimeHandler delegate)
ResponseTimeHandler(Object delegate)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ResponseTimeHandler
create()
Create a handlerboolean
equals(Object o)
ResponseTimeHandler
getDelegate()
void
handle(RoutingContext event)
Something has happened, so handle it.int
hashCode()
static ResponseTimeHandler
newInstance(ResponseTimeHandler arg)
String
toString()
-
-
-
Field Detail
-
__TYPE_ARG
public static final io.vertx.lang.rx.TypeArg<ResponseTimeHandler> __TYPE_ARG
-
-
Constructor Detail
-
ResponseTimeHandler
public ResponseTimeHandler(ResponseTimeHandler delegate)
-
ResponseTimeHandler
public ResponseTimeHandler(Object delegate)
-
-
Method Detail
-
getDelegate
public ResponseTimeHandler getDelegate()
- Specified by:
getDelegate
in interfacePlatformHandler
-
handle
public void handle(RoutingContext event)
Something has happened, so handle it.- Specified by:
handle
in interfaceHandler<RoutingContext>
- Specified by:
handle
in interfacePlatformHandler
- Parameters:
event
- the event to handle
-
create
public static ResponseTimeHandler create()
Create a handler- Returns:
- the handler
-
newInstance
public static ResponseTimeHandler newInstance(ResponseTimeHandler arg)
-
-