Java Code Examples for com.alibaba.dubbo.common.Constants#PROXY_KEY
The following examples show how to use
com.alibaba.dubbo.common.Constants#PROXY_KEY .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: ProxyFactory.java From dubbo-2.6.5 with Apache License 2.0 | 2 votes |
/** * create proxy. * * @param invoker * @return proxy */ @Adaptive({Constants.PROXY_KEY}) <T> T getProxy(Invoker<T> invoker) throws RpcException;
Example 2
Source File: ProxyFactory.java From dubbo-2.6.5 with Apache License 2.0 | 2 votes |
/** * create proxy. * * @param invoker * @return proxy */ @Adaptive({Constants.PROXY_KEY}) <T> T getProxy(Invoker<T> invoker, boolean generic) throws RpcException;
Example 3
Source File: ProxyFactory.java From dubbo-2.6.5 with Apache License 2.0 | 2 votes |
/** * create invoker. * * @param <T> * @param proxy * @param type * @param url * @return invoker */ @Adaptive({Constants.PROXY_KEY}) <T> Invoker<T> getInvoker(T proxy, Class<T> type, URL url) throws RpcException;
Example 4
Source File: ProxyFactory.java From dubbox with Apache License 2.0 | 2 votes |
/** * create proxy. * * @param invoker * @return proxy */ @Adaptive({Constants.PROXY_KEY}) <T> T getProxy(Invoker<T> invoker) throws RpcException;
Example 5
Source File: ProxyFactory.java From dubbox with Apache License 2.0 | 2 votes |
/** * create invoker. * * @param <T> * @param proxy * @param type * @param url * @return invoker */ @Adaptive({Constants.PROXY_KEY}) <T> Invoker<T> getInvoker(T proxy, Class<T> type, URL url) throws RpcException;
Example 6
Source File: ProxyFactory.java From dubbox-hystrix with Apache License 2.0 | 2 votes |
/** * create proxy. * * @param invoker * @return proxy */ @Adaptive({Constants.PROXY_KEY}) <T> T getProxy(Invoker<T> invoker) throws RpcException;
Example 7
Source File: ProxyFactory.java From dubbox-hystrix with Apache License 2.0 | 2 votes |
/** * create invoker. * * @param <T> * @param proxy * @param type * @param url * @return invoker */ @Adaptive({Constants.PROXY_KEY}) <T> Invoker<T> getInvoker(T proxy, Class<T> type, URL url) throws RpcException;
Example 8
Source File: ProxyFactory.java From dubbo3 with Apache License 2.0 | 2 votes |
/** * create proxy. * * @param invoker invoker * @return proxy */ @Adaptive({Constants.PROXY_KEY}) <T> T getProxy(Invoker<T> invoker) throws RpcException;
Example 9
Source File: ProxyFactory.java From dubbo3 with Apache License 2.0 | 2 votes |
/** * create invoker. * * @param <T> generic T * @param proxy proxy * @param type type * @param url url * @return invoker */ @Adaptive({Constants.PROXY_KEY}) <T> Invoker<T> getInvoker(T proxy, Class<T> type, URL url) throws RpcException;
Example 10
Source File: ProxyFactory.java From dubbox with Apache License 2.0 | 2 votes |
/** * create proxy. * * @param invoker * @return proxy */ @Adaptive({Constants.PROXY_KEY}) <T> T getProxy(Invoker<T> invoker) throws RpcException;
Example 11
Source File: ProxyFactory.java From dubbox with Apache License 2.0 | 2 votes |
/** * create invoker. * * @param <T> * @param proxy * @param type * @param url * @return invoker */ @Adaptive({Constants.PROXY_KEY}) <T> Invoker<T> getInvoker(T proxy, Class<T> type, URL url) throws RpcException;
Example 12
Source File: ProxyFactory.java From dubbox with Apache License 2.0 | 2 votes |
/** * create proxy. * * @param invoker * @return proxy */ @Adaptive({Constants.PROXY_KEY}) <T> T getProxy(Invoker<T> invoker) throws RpcException;
Example 13
Source File: ProxyFactory.java From dubbox with Apache License 2.0 | 2 votes |
/** * create invoker. * * @param <T> * @param proxy * @param type * @param url * @return invoker */ @Adaptive({Constants.PROXY_KEY}) <T> Invoker<T> getInvoker(T proxy, Class<T> type, URL url) throws RpcException;