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

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

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

Router.handleFailure介绍

[英]Used to route a failure to the router. Used for sub-routers. You wouldn't normally call this method directly.
[中]用于将故障路由到路由器。用于子路由器。通常不会直接调用此方法。

代码示例

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

@Override
public void handleFailure(RoutingContext context) {
  router.handleFailure(context);
}

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

@Override
public void handleFailure(RoutingContext context) {
  delegate.handleFailure(context);
}

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

/**
 * Used to route a failure to the router. Used for sub-routers. You wouldn't normally call this method directly.
 * @param context the routing context
 */
public void handleFailure(io.vertx.rxjava.ext.web.RoutingContext context) { 
 delegate.handleFailure(context.getDelegate());
}

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

/**
 * Used to route a failure to the router. Used for sub-routers. You wouldn't normally call this method directly.
 * @param context the routing context
 */
public void handleFailure(io.vertx.rxjava.ext.web.RoutingContext context) { 
 delegate.handleFailure(context.getDelegate());
}

相关文章