Package io.vertx.mutiny.ext.web.handler
Interface PlatformHandler
- All Superinterfaces:
Consumer<RoutingContext>,io.vertx.core.Handler<RoutingContext>,MutinyDelegate
- All Known Implementing Classes:
FaviconHandler,LoggerHandler,MethodOverrideHandler,PlatformHandler.PlatformHandlerImpl,ResponseContentTypeHandler,ResponseTimeHandler,SecurityAuditLoggerHandler,SessionHandler,TimeoutHandler
public interface PlatformHandler
extends io.vertx.core.Handler<RoutingContext>, Consumer<RoutingContext>, MutinyDelegate
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 Mutiny-ified interface.
- Author:
- Paulo Lopes
- See Also:
-
PlatformHandler
-
Nested Class Summary
Nested Classes -
Method Summary
Modifier and TypeMethodDescriptionvoidaccept(RoutingContext item) Handle an item.io.vertx.ext.web.handler.PlatformHandlervoidhandle(RoutingContext item) Handle an item.static PlatformHandlernewInstance(io.vertx.ext.web.handler.PlatformHandler delegate) Creates a new instance of thePlatformHandler.
-
Method Details
-
accept
Handle an item. This method is generated from theoriginalmethod."- Specified by:
acceptin interfaceConsumer<RoutingContext>
-
handle
Handle an item. This method is generated from theoriginalmethod."- Specified by:
handlein interfaceio.vertx.core.Handler<RoutingContext>
-
getDelegate
io.vertx.ext.web.handler.PlatformHandler getDelegate()- Specified by:
getDelegatein interfaceMutinyDelegate- Returns:
- the delegate used by this Mutiny object of generated type
-
newInstance
Creates a new instance of thePlatformHandler.
-