Class LoggerHandler
- java.lang.Object
-
- io.vertx.reactivex.ext.web.handler.LoggerHandler
-
- All Implemented Interfaces:
Handler<RoutingContext>,PlatformHandler
public class LoggerHandler extends Object implements PlatformHandler, Handler<RoutingContext>
A handler which logs request information to the Vert.x logger. You should mount this handler before any handler that could fail the routing context NOTE: This class has been automatically generated from theoriginalnon RX-ified interface using Vert.x codegen.
-
-
Field Summary
Fields Modifier and Type Field Description static TypeArg<LoggerHandler>__TYPE_ARGstatic LoggerFormatDEFAULT_FORMAT
-
Constructor Summary
Constructors Constructor Description LoggerHandler(LoggerHandler delegate)LoggerHandler(Object delegate)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static LoggerHandlercreate()Create a handler with default formatstatic LoggerHandlercreate(boolean immediate, LoggerFormat format)Create a handler with he specified formatstatic LoggerHandlercreate(LoggerFormat format)Create a handler with he specified formatLoggerHandlercustomFormatter(LoggerFormatter formatter)Set the custom formatter to be used by the handler.LoggerHandlercustomFormatter(Function<HttpServerRequest,String> formatter)Deprecated.booleanequals(Object o)LoggerHandlergetDelegate()voidhandle(RoutingContext event)Something has happened, so handle it.inthashCode()static LoggerHandlernewInstance(LoggerHandler arg)StringtoString()
-
-
-
Field Detail
-
__TYPE_ARG
public static final TypeArg<LoggerHandler> __TYPE_ARG
-
DEFAULT_FORMAT
public static final LoggerFormat DEFAULT_FORMAT
-
-
Constructor Detail
-
LoggerHandler
public LoggerHandler(LoggerHandler delegate)
-
LoggerHandler
public LoggerHandler(Object delegate)
-
-
Method Detail
-
getDelegate
public LoggerHandler getDelegate()
- Specified by:
getDelegatein interfacePlatformHandler
-
handle
public void handle(RoutingContext event)
Something has happened, so handle it.- Specified by:
handlein interfaceHandler<RoutingContext>- Specified by:
handlein interfacePlatformHandler- Parameters:
event- the event to handle
-
create
public static LoggerHandler create()
Create a handler with default format- Returns:
- the handler
-
create
public static LoggerHandler create(LoggerFormat format)
Create a handler with he specified format- Parameters:
format- the format- Returns:
- the handler
-
create
public static LoggerHandler create(boolean immediate, LoggerFormat format)
Create a handler with he specified format- Parameters:
immediate- true if logging should occur as soon as request arrivesformat- the format- Returns:
- the handler
-
customFormatter
@Deprecated public LoggerHandler customFormatter(Function<HttpServerRequest,String> formatter)
Deprecated.Set the custom formatter to be used by the handler.- Parameters:
formatter- the formatting function- Returns:
- the formatted log string
-
customFormatter
public LoggerHandler customFormatter(LoggerFormatter formatter)
Set the custom formatter to be used by the handler.- Parameters:
formatter- the formatter- Returns:
- the formatted log string
-
newInstance
public static LoggerHandler newInstance(LoggerHandler arg)
-
-