All Classes and Interfaces
Classes
Class
Description
This example demonstrates the use of a
HttpHandler to echo
HTTP POST data sent by the client, back to the client.The sample shows how the HttpHandler should be implemented in order to
send large amount of data to a client in a non-blocking mode.
The high-priority
HttpHandler we want to be processed as fast as possible.The low-priority
HttpHandler executing long lasting task.
This example demonstrates the use of a
HttpHandler to echo
HTTP POST data sent by the client, back to the client using
non-blocking streams introduced in Grizzly 2.0.Example of HTTP server, which assigns different priorities (thread-pools)
to registered
HttpHandlers.Secured standalone Java HTTP server.
Simple
HttpHandler implementation.The sample shows how the HttpHandler should be implemented in order to
store uploaded data into file in non-blocking way.