native/native library
Classes
- HttpBody
- A HTTP content body produced by HttpBodyHandler for either HttpRequest or HttpClientResponse.
- HttpBodyFileUpload
- A wrapper around a file upload.
- HttpBodyHandler
- A handler for processing and collecting HTTP message data in to an HttpBody.
- HttpClientResponseBody
- The body of a HttpClientResponse.
- HttpRequest
- A server-side object that contains the content of and information about an HTTP request.
- HttpRequestBody
- The body of a HttpRequest.
- HttpResponse
- An HTTP response, which returns the headers and data from the server to the client in response to an HTTP request.
- HttpRoute
- ServerUniverseUncompleteDocumentation
- HttpRouteParam
- Class used to retain parameter information (name, type, pattern)
- HttpRouteParamType
- ServerUniverseUncompleteDocumentation
- NestedRoute
- ServerUniverseUncompleteDocumentation
- RequestStore
- Key-Value-Store for reading and writing request-related data
- ServerUniverseNative
- Server application class
- ServerUniverseTcpSocketConnection
- ServerUniverseUncompleteDocumentation
- ServerUniverseWebSocketConnection
- ServerUniverseUncompleteDocumentation
-
TypeHandler<
T> - ServerUniverseUncompleteDocumentation
Enums
- DecodeMode
- ServerUniverseUncompleteDocumentation
Extensions
- FileHelpers on File
- A set of extensions on the file object which help in composing http responses
- NestedRouteExtension on ServerUniverseNative
- ServerUniverseUncompleteDocumentation
- PathNormalizer on String
- ServerUniverseUncompleteDocumentation
- RequestHelpers on HttpRequest
- Some convenience methods on the HttpRequest object to make the api more like ExpressJS
- ResponseHelpers on HttpResponse
- A set of extensions on the HttpResponse object, mostly for convenience
- StorePlugin on HttpRequest
- Integrates RequestStore mechanism on HttpRequest
Properties
-
storePluginData
→ Map<
HttpRequest, RequestStore> -
Data structure to keep all request-related data
final
Functions
-
cors(
{int age = 86400, String headers = '*', String methods = 'POST, GET, OPTIONS, PUT, PATCH, DELETE', String origin = '*'}) → FutureOr Function(HttpRequest, HttpResponse) - CORS Middlware.
-
storePluginOnDoneHandler(
HttpRequest req, HttpResponse res) → void -
Used within
ServerUniverse
to remove request-related data after the request has been resolved.
Typedefs
- ServerUniverseWebSocketErrorFunction = FutureOr Function(dynamic error, WebSocket webSocket, HttpRequest httpRequest, HttpResponse httpResponse)
- ServerUniverseUncompleteDocumentation
- ServerUniverseWebSocketFunction = FutureOr Function(WebSocket webSocket, HttpRequest httpRequest, HttpResponse httpResponse)
- ServerUniverseUncompleteDocumentation
- ServerUniverseWebSocketUpdateFunction = FutureOr Function(dynamic update, WebSocket webSocket, HttpRequest httpRequest, HttpResponse httpResponse)
- ServerUniverseUncompleteDocumentation
Exceptions / Errors
- BodyParserException
- ServerUniverseUncompleteDocumentation
- DuplicateParameterException
- Throws when a route contains duplicate parameters
- NotFoundError
- Error used by middleware, utils or type handler to elevate a NotFound response.
- NoTypeHandlerError
- Error thrown when a type handler cannot be found for a returned item
- ServerUniverseException
- Throw these exceptions to bubble up an error from sub functions and have them handled automatically for the client