io.vertx.ext.web.Router.connect()方法的使用及代码示例

x33g5p2x  于2022-01-28 转载在 其他  
字(1.9k)|赞(0)|评价(0)|浏览(90)

本文整理了Java中io.vertx.ext.web.Router.connect方法的一些代码示例,展示了Router.connect的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Router.connect方法的具体详情如下:
包路径:io.vertx.ext.web.Router
类名称:Router
方法名:connect

Router.connect介绍

[英]Add a route that matches any HTTP CONNECT request
[中]

代码示例

代码示例来源:origin: org.zalando/vertx-swagger

@Override
public Route connect(String path) {
  return router.connect(path);
}

代码示例来源:origin: org.zalando/vertx-swagger

@Override
public Route connect() {
  return router.connect();
}

代码示例来源:origin: wang007/vertx-start

@Override
public io.vertx.ext.web.Route connect() {
  return delegate.connect();
}

代码示例来源:origin: vert-x3/vertx-rx

/**
 * Add a route that matches any HTTP CONNECT request
 * @return the route
 */
public io.vertx.rxjava.ext.web.Route connect() { 
 io.vertx.rxjava.ext.web.Route ret = io.vertx.rxjava.ext.web.Route.newInstance(delegate.connect());
 return ret;
}

代码示例来源:origin: io.vertx/vertx-rx-java

/**
 * Add a route that matches any HTTP CONNECT request
 * @return the route
 */
public io.vertx.rxjava.ext.web.Route connect() { 
 io.vertx.rxjava.ext.web.Route ret = io.vertx.rxjava.ext.web.Route.newInstance(delegate.connect());
 return ret;
}

代码示例来源:origin: io.vertx/vertx-rx-java

/**
 * Add a route that matches a HTTP CONNECT request and the specified path
 * @param path URI paths that begin with this path will match
 * @return the route
 */
public io.vertx.rxjava.ext.web.Route connect(String path) { 
 io.vertx.rxjava.ext.web.Route ret = io.vertx.rxjava.ext.web.Route.newInstance(delegate.connect(path));
 return ret;
}

代码示例来源:origin: wang007/vertx-start

@Override
public io.vertx.ext.web.Route connect(String path) {
  return delegate.connect(getFullPath(path));
}

代码示例来源:origin: vert-x3/vertx-rx

/**
 * Add a route that matches a HTTP CONNECT request and the specified path
 * @param path URI paths that begin with this path will match
 * @return the route
 */
public io.vertx.rxjava.ext.web.Route connect(String path) { 
 io.vertx.rxjava.ext.web.Route ret = io.vertx.rxjava.ext.web.Route.newInstance(delegate.connect(path));
 return ret;
}

相关文章