Uses of Interface
org.eclipse.jetty.server.Handler.Singleton
Packages that use Handler.Singleton
Package
Description
Jetty Server : Core Server API
Jetty Server : Core Handler API
Jetty GZIP Handler
-
Uses of Handler.Singleton in org.eclipse.jetty.server
Classes in org.eclipse.jetty.server that implement Handler.SingletonModifier and TypeClassDescriptionstatic classAn implementation ofHandler.Singleton, which is aHandler.Containerthat wraps one single otherHandler.classclassAHandlerthat can limit the size of message bodies in requests and responses.Methods in org.eclipse.jetty.server that return Handler.SingletonMethods in org.eclipse.jetty.server with parameters of type Handler.SingletonModifier and TypeMethodDescriptiondefault voidHandler.Singleton.insertHandler(Handler.Singleton handler) Inserts the givenHandler(and possible chain ofHandlers) between thisHandlerand its currentchild.static HandlerHandler.Singleton.updateHandler(Handler.Singleton wrapper, Handler handler) Utility method to perform sanity checks before adding the givenHandlerto the givenSingleton, typically used in implementations ofsetHandler(Handler). -
Uses of Handler.Singleton in org.eclipse.jetty.server.handler
Classes in org.eclipse.jetty.server.handler that implement Handler.SingletonModifier and TypeClassDescriptionclassA Handler that can apply a mechanism to buffer the entire response content until the output is closed.classAHandler.Wrapperthat conditionally handles aRequest.static classAn AbstractConditionalHandler.static classAn implementation ofConditionalHandlerthat, if conditions are met, will not do any further handling by returningfalsefromConditionalHandler.DontHandle.onConditionsMet(Request, Response, Callback).static classAn abstract implementation ofConditionalHandlerthat, if conditions are not met, will call theConditionalHandler.nextHandler(Request, Response, Callback)fromConditionalHandler.ElseNext.onConditionsNotMet(Request, Response, Callback).static classAn implementation ofConditionalHandlerthat, if conditions are met, will reject the request by sending a response (by default aHttpStatus.FORBIDDEN_403).static classAn implementation ofConditionalHandlerthat, if conditions are met, will skip the nextHandlerby invoking itsnext Handler.classImplementation of aHandlerthat supports HTTP CONNECT.classclassDebug Handler.classclassAHandler.Wrapperthat fires events during the processing of the requests.classHandler to track active requests and allow them to gracefully complete.classAHandlerContainerthat allows a hot swap of a wrapped handler.classHandler to adjust the idle timeout of requests while dispatched.classInetAddress Access HandlerclassAHandlerthat helps recording the total latency of the requests executed by the wrapped handler.classAContextHandlerwith a childHandlerthat redirects to a configurable URI.classA quality of serviceHandlerthatconditionallylimits the number of concurrent requests, to provide more predictable end-user experience in case descendantHandlers have limited capacity.classResource Handler.static classUtility class to create a ContextHandler containing a ResourceHandler.classForces a redirect to the secure form of the resource before allowed to access the resource.classAHandlerthat initiates a Shutdown of the Jetty Server it belongs to.classstatic classChecks that the wrapped handler can read/write at a minimal rate of N bytes per second.classHandler to limit the threads per IP address for DOS protectionclassInspired by nginx'stry_filesfunctionality. -
Uses of Handler.Singleton in org.eclipse.jetty.server.handler.gzip
Classes in org.eclipse.jetty.server.handler.gzip that implement Handler.Singleton