(String cmd)
| 178 | |
| 179 | // 工具方法:创建命令执行请求 |
| 180 | public static Request createCommandRequest(String cmd) { |
| 181 | return new Request(TYPE_COMMAND, cmd.getBytes(StandardCharsets.UTF_8)); |
| 182 | } |
| 183 | |
| 184 | // 工具方法:创建心跳请求 |
| 185 | public static Request createHeartbeatRequest() { |
nothing calls this directly
no outgoing calls
no test coverage detected