SocketSynchChannelFactory factory = new SocketSynchChannelFactory();
SynchChannel channel = factory.openSynchChannel(target);
SocketMetadata socket = (SocketMetadata) channel.narrow(SocketMetadata.class);
socket.setTcpNoDelay(true);
return new AsynchChannelToClientRequestChannel(
new PacketAggregatingSynchChannel(
channel));
}