MCPcopy Create free account
hub / github.com/DeNA/PacketProxy / send

Method send

src/main/java/core/packetproxy/Simplex.java:316–323  ·  view source on GitHub ↗
(byte[] input_data)

Source from the content-addressed store, hash-verified

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) {

Callers 1

runMethod · 0.95

Calls 2

callOnChunkSendMethod · 0.95
writeMethod · 0.65

Tested by

no test coverage detected