(byte[] input_data)
| 314 | } |
| 315 | |
| 316 | public void send(byte[] input_data) throws Exception { |
| 317 | input_data = callOnChunkSend(input_data); |
| 318 | if (out != null && input_data != null) { |
| 319 | |
| 320 | out.write(input_data); |
| 321 | out.flush(); |
| 322 | } |
| 323 | } |
| 324 | |
| 325 | public void sendWithoutRecording(byte[] input_data) throws Exception { |
| 326 | if (out != null) { |
no test coverage detected