RemotePool rem = new RemotePool ("Atlas", "tcp://192.168.1.123:30000") ;
new RemotePool (PoolName, "tcp://IpAddress:ChannelPort") ;
int n = rem.AvailableConnections ;
if (n > 0)
{
TcpLink tcp = rem.GetConnection () ;
if (tcp != null)
{
// Use it
}
}