| Package | Description |
|---|---|
| io.vertx.ext.routematcher | |
| io.vertx.ext.routematcher.impl |
| Modifier and Type | Method and Description |
|---|---|
RouteMatcher |
RouteMatcher.accept(io.vertx.core.http.HttpServerRequest request) |
RouteMatcher |
RouteMatcher.all(String pattern,
io.vertx.core.Handler<io.vertx.core.http.HttpServerRequest> handler)
Specify a handler that will be called for all HTTP methods
|
RouteMatcher |
RouteMatcher.allWithRegEx(String regex,
io.vertx.core.Handler<io.vertx.core.http.HttpServerRequest> handler)
Specify a handler that will be called for all HTTP methods
|
RouteMatcher |
RouteMatcher.matchMethod(io.vertx.core.http.HttpMethod method,
String pattern,
io.vertx.core.Handler<io.vertx.core.http.HttpServerRequest> handler)
Specify a handler that will be called for a matching request
|
RouteMatcher |
RouteMatcher.matchMethodWithRegEx(io.vertx.core.http.HttpMethod method,
String pattern,
io.vertx.core.Handler<io.vertx.core.http.HttpServerRequest> handler)
Specify a handler that will be called for a matching request
|
RouteMatcher |
RouteMatcher.noMatch(io.vertx.core.Handler<io.vertx.core.http.HttpServerRequest> handler)
Specify a handler that will be called when no other handlers match.
|
static RouteMatcher |
RouteMatcher.routeMatcher() |
| Modifier and Type | Class and Description |
|---|---|
class |
RouteMatcherImpl
|
| Modifier and Type | Method and Description |
|---|---|
RouteMatcher |
RouteMatcherImpl.accept(io.vertx.core.http.HttpServerRequest request) |
RouteMatcher |
RouteMatcherImpl.matchMethod(io.vertx.core.http.HttpMethod method,
String pattern,
io.vertx.core.Handler<io.vertx.core.http.HttpServerRequest> handler) |
RouteMatcher |
RouteMatcherImpl.matchMethodWithRegEx(io.vertx.core.http.HttpMethod method,
String regex,
io.vertx.core.Handler<io.vertx.core.http.HttpServerRequest> handler) |
Copyright © 2014. All Rights Reserved.