Uses of Class
io.helidon.webserver.DirectHandler.EventType
-
Packages that use DirectHandler.EventType Package Description io.helidon.webserver Reactive web server API. -
-
Uses of DirectHandler.EventType in io.helidon.webserver
Methods in io.helidon.webserver that return DirectHandler.EventType Modifier and Type Method Description static DirectHandler.EventType
DirectHandler.EventType. valueOf(String name)
Returns the enum constant of this type with the specified name.static DirectHandler.EventType[]
DirectHandler.EventType. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in io.helidon.webserver with parameters of type DirectHandler.EventType Modifier and Type Method Description WebServer.Builder
WebServer.Builder. directHandler(DirectHandler handler, DirectHandler.EventType... types)
Provide a custom handler for events that bypass routing.DirectHandler.TransportResponse
DirectHandler. handle(DirectHandler.TransportRequest request, DirectHandler.EventType eventType, Http.ResponseStatus defaultStatus, String message)
Handler of responses that bypass routing, MUST NOT block the current thread.default DirectHandler.TransportResponse
DirectHandler. handle(DirectHandler.TransportRequest request, DirectHandler.EventType eventType, Http.ResponseStatus defaultStatus, Throwable t)
Handler of responses that bypass routing, MUST NOT block the current thread.
-