send bytes to this child's stdin @param data the bytes to send
(byte[] data)
| 62 | * @param data the bytes to send |
| 63 | */ |
| 64 | public synchronized void send(byte[] data) throws IOException { |
| 65 | if(!Client.SendTo(this.id, data)) |
| 66 | throw new IOException("cannot send bytes to child"); |
| 67 | } |
| 68 | |
| 69 | /** |
| 70 | * send a string to this child's stdin |