| Interface | Description |
|---|---|
| ReactiveRoutes.ServerSentEvent<T> |
A class allowing to customized how the server sent events are written.
|
| RoutingExchange |
Convenient wrapper of
RoutingContext. |
| Class | Description |
|---|---|
| ReactiveRoutes |
Provides utility methods, mainly to handle
text/event-stream responses. |
| Enum | Description |
|---|---|
| Route.HandlerType |
| Annotation Type | Description |
|---|---|
| Body |
Identifies a route method parameter that should be injected with a value returned from:
RoutingContext.getBody() for type Buffer
RoutingContext.getBodyAsString() for type String
RoutingContext.getBodyAsJson() for type JsonObject
RoutingContext.getBodyAsJsonArray() for type JsonArray
RoutingContext.getBodyAsJson() and JsonObject.mapTo(Class) for any other type
|
| Header |
Identifies a route method parameter that should be injected with a value returned from
HttpServerRequest.getHeader(String). |
| Param |
Identifies a route method parameter that should be injected with a value returned from
HttpServerRequest.getParam(String). |
| Route |
This annotation can be used to configure a reactive route in a declarative way.
|
| Route.Routes | |
| RouteBase |
Annotation used to configure some defaults for reactive routes declared on a class.
|
| RouteFilter |
This annotation is used to define a "filter", i.e.
|
Copyright © 2020 JBoss by Red Hat. All rights reserved.