Package io.quarkus.vertx.web
Annotation Interface RouteFilter
This annotation is used to define a "filter", i.e. a route called on every HTTP request.
The target business method must return void and accept exactly one argument of type RoutingContext.
Filters with higher priority are called first. The default priority for all annotation-based filters is
DEFAULT_PRIORITY.
-
Optional Element Summary
Optional ElementsModifier and TypeOptional ElementDescriptionintFilters with higher priority are called first. -
Field Summary
Fields
-
Field Details
-
DEFAULT_PRIORITY
static final int DEFAULT_PRIORITY- See Also:
-
-
Element Details
-
value
int valueFilters with higher priority are called first.- Returns:
- the priority
- See Also:
- Default:
- 10
-