Uses of Class
org.jgrapes.http.events.Request.Out
Packages that use Request.Out
Package
Description
Provides components for building a HTTP server based on the
core and IO components.
Provides the events handled by the server components.
-
Uses of Request.Out in org.jgrapes.http
Methods in org.jgrapes.http with parameters of type Request.OutModifier and TypeMethodDescriptionvoid
HttpConnector.onRequest
(Request.Out event) Starts the processing of a request from the application layer. -
Uses of Request.Out in org.jgrapes.http.events
Subclasses of Request.Out in org.jgrapes.http.eventsModifier and TypeClassDescriptionstatic class
Represents a HTTP CONNECT request.static class
Represents a HTTP DELETE request.static class
Represents a HTTP GET request.static class
Represents a HTTP HEAD request.static class
Represents a HTTP OPTIONS request.static class
Represents a HTTP POST request.static class
Represents a HTTP PUT request.static class
Represents a HTTP TRACE request.Methods in org.jgrapes.http.events that return Request.OutModifier and TypeMethodDescriptionHttpConnected.request()
Returns the request.Request.Out.setConnectedCallback
(BiConsumer<Request.Out, SocketIOChannel> connectedCallback) Sets a “connected callback”.Methods in org.jgrapes.http.events that return types with arguments of type Request.OutModifier and TypeMethodDescriptionRequest.Out.connectedCallback()
Returns the connected callback.Method parameters in org.jgrapes.http.events with type arguments of type Request.OutModifier and TypeMethodDescriptionRequest.Out.setConnectedCallback
(BiConsumer<Request.Out, SocketIOChannel> connectedCallback) Sets a “connected callback”.Constructors in org.jgrapes.http.events with parameters of type Request.OutModifierConstructorDescriptionHttpConnected
(Request.Out request, SocketAddress localAddress, SocketAddress remoteAddress) Instantiates a new event.