MCPcopy Create free account
hub / github.com/ReadyTalk/avian / write

Method write

classpath/java/net/Socket.java:122–127  ·  view source on GitHub ↗
(int c)

Source from the content-addressed store, hash-verified

120 }
121
122 @Override
123 public void write(int c) throws IOException {
124 byte[] res = new byte[1];
125 res[0] = (byte)c;
126 send(sock, res, 0, 1);
127 }
128
129 @Override
130 public void write(byte[] buffer) throws IOException {

Callers

nothing calls this directly

Calls 2

minMethod · 0.95
sendMethod · 0.45

Tested by

no test coverage detected