Uses of Interface
io.helidon.common.http.DirectHandler
Packages that use DirectHandler
Package
Description
HTTP APIs and implementations usable by both server and client side of the HTTP story.
NĂma WebServer module, combining common server API, HTTP API and HTTP/1.1 API to create a server.
WebServer HTTP specific APIs.
Reactive web server API.
-
Uses of DirectHandler in io.helidon.common.http
Methods in io.helidon.common.http that return DirectHandlerModifier and TypeMethodDescriptionstatic DirectHandlerDirectHandler.defaultHandler()Default handler will HTML encode the message (if any), use the default status code for the event type, and copy all headers configured. -
Uses of DirectHandler in io.helidon.nima.webserver
Methods in io.helidon.nima.webserver with parameters of type DirectHandlerModifier and TypeMethodDescriptionListenerConfiguration.Builder.directHandler(DirectHandler handler, DirectHandler.EventType... eventTypes) Configure a simple handler specific for this listener.WebServer.Builder.directHandler(DirectHandler handler, DirectHandler.EventType... eventTypes) Configure a simple handler. -
Uses of DirectHandler in io.helidon.nima.webserver.http
Methods in io.helidon.nima.webserver.http that return DirectHandlerModifier and TypeMethodDescriptionDirectHandlers.handler(DirectHandler.EventType eventType) Get handler for the event type.Methods in io.helidon.nima.webserver.http with parameters of type DirectHandlerModifier and TypeMethodDescriptionDirectHandlers.Builder.addHandler(DirectHandler.EventType eventType, DirectHandler handler) Add a handler. -
Uses of DirectHandler in io.helidon.reactive.webserver
Methods in io.helidon.reactive.webserver with parameters of type DirectHandlerModifier and TypeMethodDescriptionWebServer.Builder.directHandler(DirectHandler handler, DirectHandler.EventType... types) Provide a custom handler for events that bypass routing.