RequestExecutionInputs
Execution Inputs: Server Request
Implements ExecutionInputs for a server-side request execution. Request executions fulfill SSR-style serving requests via a guest VM execution. This interface is implemented with generic types to allow multiple higher-order server interfaces to be supported via a single VM dispatch system.
Request State
HTTP request state includes such variables as the path
, method
, headers
, and cookies
, and so on. Each are provided by this interface. See method or property documentation for more information.
Parameters
Request
concrete request type adapted by an implementor of this interface.
See also
Micronaut implementation of this interface.