()
| 396 | } |
| 397 | |
| 398 | public synchronized HashMap<Object, Object> erlangMemory() throws IOException, OtpErlangException { |
| 399 | sendRPC("erlang", "memory", list()); |
| 400 | |
| 401 | OtpErlangList result = (OtpErlangList) receiveRPC(); |
| 402 | |
| 403 | return OtpUtil.propsToMap(result); |
| 404 | } |
| 405 | |
| 406 | public boolean isConnected() { |
| 407 | return connected.get(); |
no test coverage detected