* @return
* @throws IOException
*/
protected RequestChannel createClientRequestChannel() throws IOException {
SynchChannelFactory factory = new SocketSynchChannelFactory();
PacketAggregatingSynchChannel channel = new PacketAggregatingSynchChannel(factory.openSynchChannel(serverURI));
((SocketMetadata)channel.narrow(SocketMetadata.class)).setTcpNoDelay(true);
return new AsynchChannelToClientRequestChannel(channel);
}
}