Package io.vertx.rxjava3.ext.web.handler
Interface PlatformHandler
-
- All Superinterfaces:
Handler<RoutingContext>
- All Known Implementing Classes:
FaviconHandler
,LoggerHandler
,MethodOverrideHandler
,ResponseContentTypeHandler
,ResponseTimeHandler
,SecurityAuditLoggerHandler
,SessionHandler
,TimeoutHandler
public interface PlatformHandler extends 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 the
original
non RX-ified interface using Vert.x codegen.
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Modifier and Type Method Description PlatformHandler
getDelegate()
void
handle(RoutingContext event)
Something has happened, so handle it.static PlatformHandler
newInstance(PlatformHandler arg)
-
-
-
Method Detail
-
getDelegate
PlatformHandler getDelegate()
-
handle
void handle(RoutingContext event)
Something has happened, so handle it.- Specified by:
handle
in interfaceHandler<RoutingContext>
- Parameters:
event
- the event to handle
-
newInstance
static PlatformHandler newInstance(PlatformHandler arg)
-
-