(byte[] data)
| 287 | } |
| 288 | |
| 289 | public void send(byte[] data) throws ClosedChannelException { |
| 290 | send(data, false); |
| 291 | } |
| 292 | |
| 293 | public void send(byte[] data, boolean close) throws ClosedChannelException { |
| 294 | send(new ByteBuffer[] {ByteBuffer.wrap(data)}, close); |