Interface PlatformHandler
-
- All Superinterfaces:
io.vertx.core.Handler<RoutingContext>
- All Known Implementing Classes:
FaviconHandler,LoggerHandler,MethodOverrideHandler,ResponseContentTypeHandler,ResponseTimeHandler,SessionHandler,TimeoutHandler
public interface PlatformHandler extends io.vertx.core.Handler<RoutingContext>
Base platform interface for handlers that provide functionality to the application platform. Two examples are: NOTE: This class has been automatically generated from theoriginalnon RX-ified interface using Vert.x codegen.
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Modifier and Type Method Description io.vertx.ext.web.handler.PlatformHandlergetDelegate()voidhandle(RoutingContext event)Something has happened, so handle it.static PlatformHandlernewInstance(io.vertx.ext.web.handler.PlatformHandler arg)
-
-
-
Method Detail
-
getDelegate
io.vertx.ext.web.handler.PlatformHandler getDelegate()
-
handle
void handle(RoutingContext event)
Something has happened, so handle it.- Specified by:
handlein interfaceio.vertx.core.Handler<RoutingContext>- Parameters:
event- the event to handle
-
newInstance
static PlatformHandler newInstance(io.vertx.ext.web.handler.PlatformHandler arg)
-
-