接口 Router
-
- 所有超级接口:
Comparable<Router>
public interface Router extends Comparable<Router>
Router. (SPI, Prototype, ThreadSafe)
-
-
方法概要
所有方法 实例方法 抽象方法 修饰符和类型 方法 说明 int
getPriority()
Router's priority, used to sort routers.URL
getUrl()
get the router url.<T> List<Invoker<T>>
route(List<Invoker<T>> invokers, URL url, Invocation invocation)
route.-
从接口继承的方法 java.lang.Comparable
compareTo
-
-
-
-
方法详细资料
-
getUrl
URL getUrl()
get the router url.- 返回:
- url
-
route
<T> List<Invoker<T>> route(List<Invoker<T>> invokers, URL url, Invocation invocation) throws RpcException
route.- 参数:
invokers
-url
- refer urlinvocation
-- 返回:
- routed invokers
- 抛出:
RpcException
-
getPriority
int getPriority()
Router's priority, used to sort routers.- 返回:
- router's priority
-
-