Java Code Examples for com.alibaba.dubbo.common.Constants#TRANSPORTER_KEY

The following examples show how to use com.alibaba.dubbo.common.Constants#TRANSPORTER_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: ZookeeperTransporter.java    From dubbo-2.6.5 with Apache License 2.0 4 votes vote down vote up
@Adaptive({Constants.CLIENT_KEY, Constants.TRANSPORTER_KEY})
ZookeeperClient connect(URL url);
 
Example 2
Source File: ZookeeperTransporter.java    From dubbox with Apache License 2.0 4 votes vote down vote up
@Adaptive({Constants.CLIENT_KEY, Constants.TRANSPORTER_KEY})
ZookeeperClient connect(URL url);
 
Example 3
Source File: ZookeeperTransporter.java    From dubbox with Apache License 2.0 4 votes vote down vote up
@Adaptive({Constants.CLIENT_KEY, Constants.TRANSPORTER_KEY})
ZookeeperClient connect(URL url);
 
Example 4
Source File: ZookeeperTransporter.java    From dubbox-hystrix with Apache License 2.0 4 votes vote down vote up
@Adaptive({Constants.CLIENT_KEY, Constants.TRANSPORTER_KEY})
ZookeeperClient connect(URL url);
 
Example 5
Source File: ZookeeperTransporter.java    From dubbox with Apache License 2.0 4 votes vote down vote up
@Adaptive({Constants.CLIENT_KEY, Constants.TRANSPORTER_KEY})
ZookeeperClient connect(URL url);
 
Example 6
Source File: ZookeeperTransporter.java    From dubbo3 with Apache License 2.0 4 votes vote down vote up
@Adaptive({Constants.CLIENT_KEY, Constants.TRANSPORTER_KEY})
ZookeeperClient connect(URL url);
 
Example 7
Source File: Transporter.java    From dubbox with Apache License 2.0 2 votes vote down vote up
/**
 * Connect to a server.
 * 
 * @see com.alibaba.dubbo.remoting.Transporters#connect(URL, Receiver, ChannelListener)
 * @param url server url
 * @param handler
 * @return client
 * @throws RemotingException 
 */
@Adaptive({Constants.CLIENT_KEY, Constants.TRANSPORTER_KEY})
Client connect(URL url, ChannelHandler handler) throws RemotingException;
 
Example 8
Source File: Transporter.java    From dubbox with Apache License 2.0 2 votes vote down vote up
/**
 * Bind a server.
 * 
 * @see com.alibaba.dubbo.remoting.Transporters#bind(URL, Receiver, ChannelHandler)
 * @param url server url
 * @param handler
 * @return server
 * @throws RemotingException 
 */
@Adaptive({Constants.SERVER_KEY, Constants.TRANSPORTER_KEY})
Server bind(URL url, ChannelHandler handler) throws RemotingException;
 
Example 9
Source File: Transporter.java    From dubbox with Apache License 2.0 2 votes vote down vote up
/**
 * Connect to a server.
 * 
 * @see com.alibaba.dubbo.remoting.Transporters#connect(URL, Receiver, ChannelListener)
 * @param url server url
 * @param handler
 * @return client
 * @throws RemotingException 
 */
@Adaptive({Constants.CLIENT_KEY, Constants.TRANSPORTER_KEY})
Client connect(URL url, ChannelHandler handler) throws RemotingException;
 
Example 10
Source File: Transporter.java    From dubbox with Apache License 2.0 2 votes vote down vote up
/**
 * Bind a server.
 * 
 * @see com.alibaba.dubbo.remoting.Transporters#bind(URL, Receiver, ChannelHandler)
 * @param url server url
 * @param handler
 * @return server
 * @throws RemotingException 
 */
@Adaptive({Constants.SERVER_KEY, Constants.TRANSPORTER_KEY})
Server bind(URL url, ChannelHandler handler) throws RemotingException;
 
Example 11
Source File: Transporter.java    From dubbo3 with Apache License 2.0 2 votes vote down vote up
/**
 * Connect to a server.
 *
 * @param url     server url
 * @param handler handler
 * @return client
 * @throws RemotingException remote exception
 * @see com.alibaba.dubbo.remoting.Transporters#connect(URL, ChannelHandler...)
 */
@Adaptive({Constants.CLIENT_KEY, Constants.TRANSPORTER_KEY})
Client connect(URL url, ChannelHandler handler) throws RemotingException;
 
Example 12
Source File: Transporter.java    From dubbo3 with Apache License 2.0 2 votes vote down vote up
/**
 * Bind a server.
 *
 * @param url     server url
 * @param handler handler
 * @return server
 * @throws RemotingException remote exception
 * @see com.alibaba.dubbo.remoting.Transporters#bind(String, ChannelHandler...)
 */
@Adaptive({Constants.SERVER_KEY, Constants.TRANSPORTER_KEY})
Server bind(URL url, ChannelHandler handler) throws RemotingException;
 
Example 13
Source File: Transporter.java    From dubbox-hystrix with Apache License 2.0 2 votes vote down vote up
/**
 * Connect to a server.
 * 
 * @see com.alibaba.dubbo.remoting.Transporters#connect(URL, Receiver, ChannelListener)
 * @param url server url
 * @param handler
 * @return client
 * @throws RemotingException 
 */
@Adaptive({Constants.CLIENT_KEY, Constants.TRANSPORTER_KEY})
Client connect(URL url, ChannelHandler handler) throws RemotingException;
 
Example 14
Source File: Transporter.java    From dubbox-hystrix with Apache License 2.0 2 votes vote down vote up
/**
 * Bind a server.
 * 
 * @see com.alibaba.dubbo.remoting.Transporters#bind(URL, Receiver, ChannelHandler)
 * @param url server url
 * @param handler
 * @return server
 * @throws RemotingException 
 */
@Adaptive({Constants.SERVER_KEY, Constants.TRANSPORTER_KEY})
Server bind(URL url, ChannelHandler handler) throws RemotingException;
 
Example 15
Source File: Transporter.java    From dubbox with Apache License 2.0 2 votes vote down vote up
/**
 * Connect to a server.
 * 
 * @see com.alibaba.dubbo.remoting.Transporters#connect(URL, Receiver, ChannelListener)
 * @param url server url
 * @param handler
 * @return client
 * @throws RemotingException 
 */
@Adaptive({Constants.CLIENT_KEY, Constants.TRANSPORTER_KEY})
Client connect(URL url, ChannelHandler handler) throws RemotingException;
 
Example 16
Source File: Transporter.java    From dubbox with Apache License 2.0 2 votes vote down vote up
/**
 * Bind a server.
 * 
 * @see com.alibaba.dubbo.remoting.Transporters#bind(URL, Receiver, ChannelHandler)
 * @param url server url
 * @param handler
 * @return server
 * @throws RemotingException 
 */
@Adaptive({Constants.SERVER_KEY, Constants.TRANSPORTER_KEY})
Server bind(URL url, ChannelHandler handler) throws RemotingException;
 
Example 17
Source File: Transporter.java    From dubbo-2.6.5 with Apache License 2.0 2 votes vote down vote up
/**
 * Connect to a server.
 *
 * @param url     server url
 * @param handler
 * @return client
 * @throws RemotingException
 * @see com.alibaba.dubbo.remoting.Transporters#connect(URL, ChannelHandler...)
 */
@Adaptive({Constants.CLIENT_KEY, Constants.TRANSPORTER_KEY})
Client connect(URL url, ChannelHandler handler) throws RemotingException;
 
Example 18
Source File: Transporter.java    From dubbo-2.6.5 with Apache License 2.0 2 votes vote down vote up
/**
 * Bind a server.
 *
 * @param url     server url
 * @param handler
 * @return server
 * @throws RemotingException
 * @see com.alibaba.dubbo.remoting.Transporters#bind(URL, ChannelHandler...)
 */
@Adaptive({Constants.SERVER_KEY, Constants.TRANSPORTER_KEY})
Server bind(URL url, ChannelHandler handler) throws RemotingException;