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
  • Method Details

    • accept

      void accept(RoutingContext item)
      Handle an item. This method is generated from the original method."
      Specified by:
      accept in interface Consumer<RoutingContext>
    • handle

      void handle(RoutingContext item)
      Handle an item. This method is generated from the original method."
      Specified by:
      handle in interface io.vertx.core.Handler<RoutingContext>
    • getDelegate

      io.vertx.ext.web.handler.PlatformHandler getDelegate()
      Specified by:
      getDelegate in interface MutinyDelegate
      Returns:
      the delegate used by this Mutiny object of generated type
    • newInstance

      static PlatformHandler newInstance(io.vertx.ext.web.handler.PlatformHandler delegate)
      Creates a new instance of the PlatformHandler.