Ejemplo n.º 1
0
 public void close() throws IOException {
   pipeOutputStream.close();
 }
Ejemplo n.º 2
0
 public void write(final byte[] b, final int off, final int len) throws IOException {
   pipeOutputStream.write(b, off, len);
 }
Ejemplo n.º 3
0
 public void flush() throws IOException {
   pipeOutputStream.flush();
 }
Ejemplo n.º 4
0
 public void write(final byte[] b) throws IOException {
   pipeOutputStream.write(b);
 }