3536373839404142434445
m_hosts.add(s); m_connectionInfos.put(s, ci); } public ConnectionInfo getSlave() { ConnectionInfo result = null; Socket host = null; try { host = m_hosts.take(); result = m_connectionInfos.get(host);
252627282930313233
public void addSlave(Socket s) { if( s==null) { return; } ConnectionInfo ci = new ConnectionInfo(); ci.setSocket(s); addSlave(s, ci); }
3637383940414243444546