import org.jboss.remoting3.Channel;
Channel channel = ...;
channel.connect(target, option);
import org.jboss.remoting3.Channel;
Channel channel = ...;
channel.send(message);
channel.receive(listener);
import org.jboss.remoting3.Endpoint;
Endpoint endpoint = ...;
endpoint.setConnectTimeout(timeout);
endpoint.setBufferSize(bufferSize);
import org.jboss.remoting3.Channel;
Channel channel = ...;
channel.setSerializer(new DefaultSerializer());
channel.setSerializer(new CustomSerializer());