Uses of Class
com.pixelservices.flash.components.http.RequestHandler
Packages that use RequestHandler
Package
Description
-
Uses of RequestHandler in com.pixelservices.flash
Subclasses of RequestHandler in com.pixelservices.flash -
Uses of RequestHandler in com.pixelservices.flash.components
Methods in com.pixelservices.flash.components that return types with arguments of type RequestHandlerMethods in com.pixelservices.flash.components with parameters of type RequestHandlerModifier and TypeMethodDescriptionvoid
FlashServer.registerRoute
(HttpMethod method, String fullPath, RequestHandler handler) -
Uses of RequestHandler in com.pixelservices.flash.components.http
Constructors in com.pixelservices.flash.components.http with parameters of type RequestHandlerModifierConstructorDescriptionHandlerSpecification
(RequestHandler requestHandler, String endpoint, HttpMethod method, boolean enforcedNonNullBody) Constructs a HandlerSpecification for a given request handler, endpoint, HTTP method, and body enforcement policy. -
Uses of RequestHandler in com.pixelservices.flash.components.http.expected
Constructors in com.pixelservices.flash.components.http.expected with parameters of type RequestHandlerModifierConstructorDescriptionExpectedBodyField
(String fieldName, RequestHandler requestHandler) Constructor for ExpectedBodyFieldExpectedBodyField
(String fieldName, String description, RequestHandler requestHandler) Constructor for ExpectedBodyFieldExpectedBodyFile
(String fieldName, RequestHandler requestHandler) Constructor for ExpectedBodyFile.ExpectedBodyFile
(String fieldName, String description, RequestHandler requestHandler) Constructor for ExpectedBodyFile.ExpectedRequestParameter
(String parameterName, RequestHandler requestHandler) Constructor for ExpectedRequestParameterExpectedRequestParameter
(String parameterName, String description, RequestHandler requestHandler) Constructor for ExpectedRequestParameter -
Uses of RequestHandler in com.pixelservices.flash.components.http.pool
Classes in com.pixelservices.flash.components.http.pool with type parameters of type RequestHandlerMethods in com.pixelservices.flash.components.http.pool with type parameters of type RequestHandlerModifier and TypeMethodDescription<T extends RequestHandler>
HandlerPool<T> HandlerPoolManager.getOrCreatePool
(Class<T> handlerClass) Gets or creates a handler pool for the specified handler class. -
Uses of RequestHandler in com.pixelservices.flash.components.http.routing
Methods in com.pixelservices.flash.components.http.routing with type parameters of type RequestHandlerModifier and TypeMethodDescription<T extends RequestHandler>
RouterRegisters a request handler class with the server. -
Uses of RequestHandler in com.pixelservices.flash.components.http.routing.models
Subclasses of RequestHandler in com.pixelservices.flash.components.http.routing.modelsModifier and TypeClassDescriptionclass
Wraps a SimpleHandler into a full RequestHandler with ID and metadata.Methods in com.pixelservices.flash.components.http.routing.models that return types with arguments of type RequestHandlerModifier and TypeMethodDescriptionClass
<? extends RequestHandler> RouteEntry.getHandlerClass()
HandlerPool
<? extends RequestHandler> RouteEntry.getHandlerPool()
Constructors in com.pixelservices.flash.components.http.routing.models with parameters of type RequestHandlerModifierConstructorDescriptionRouteEntry
(HttpMethod method, String path, RequestHandler handler, HandlerType handlerType, HandlerPoolManager poolManager) Constructor for lambda-based handlers (using a special pool)Constructor parameters in com.pixelservices.flash.components.http.routing.models with type arguments of type RequestHandlerModifierConstructorDescriptionRouteEntry
(HttpMethod method, String path, Class<? extends RequestHandler> handlerClass, HandlerType handlerType, HandlerPoolManager poolManager) Constructor for class-based handlers that will use pooling -
Uses of RequestHandler in com.pixelservices.flash.models
Subclasses of RequestHandler in com.pixelservices.flash.modelsModifier and TypeClassDescriptionclass
A base handler class that eliminates the need for boilerplate constructors. -
Uses of RequestHandler in com.pixelservices.flash.utils
Methods in com.pixelservices.flash.utils that return types with arguments of type RequestHandlerModifier and TypeMethodDescriptionstatic List
<Class<? extends RequestHandler>> HDIUtils.detectHDIChain
(Class<? extends RequestHandler> clazz) Detects the chain of Handler Default Implementations (HDIs) that a given handler extends.Method parameters in com.pixelservices.flash.utils with type arguments of type RequestHandlerModifier and TypeMethodDescriptionstatic List
<Class<? extends RequestHandler>> HDIUtils.detectHDIChain
(Class<? extends RequestHandler> clazz) Detects the chain of Handler Default Implementations (HDIs) that a given handler extends.