I saw that it was possibly to use RouteMatcher class in vert.x 2.0(how i understood it works like Matcher-class from regex package). Now I need to use something like this construction,but in v. 3.2.1. But I didn't find routmetcher there. What is alternative of?
--
You received this message because you are subscribed to the Google Groups "vert.x" group.
To unsubscribe from this group and stop receiving emails from it, send an email to vertx+un...@googlegroups.com.
Visit this group at https://groups.google.com/group/vertx.
To view this discussion on the web, visit https://groups.google.com/d/msgid/vertx/37eb1849-f222-44d2-920d-e28a68f5eedc%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
To view this discussion on the web, visit https://groups.google.com/d/msgid/vertx/812945fe-b875-455e-89c8-a44995965007%40googlegroups.com.
public Router(io.vertx.ext.web.Router delegate) {
this.delegate = delegate;
}
public static Router router(Vertx vertx) {
Router ret= Router.newInstance(io.vertx.ext.web.Router.router((io.vertx.core.Vertx) vertx.getDelegate()));
return ret;
}Router router=new Router((io.vertx.ext.web.Router) vertx);
I think now it will be possible to work with this router