()
| 255 | } |
| 256 | |
| 257 | public String toString() { |
| 258 | return "RouterStub[localsocket=" + ((sock != null) ? sock.getLocalSocketAddress().toString() |
| 259 | : "null")+ ",router_host=" + router_host + "::" + router_port |
| 260 | + ",connected=" + isConnected() + "]"; |
| 261 | } |
| 262 | |
| 263 | public void sendToAllMembers(String group, byte[] data, int offset, int length) throws Exception { |
| 264 | sendToMember(group, null, data, offset, length); // null destination represents mcast |
no test coverage detected