Methods Summary |
---|
public void | close()Close both output streams.
try {
left.close();
} finally {
right.close();
}
|
public void | flush()Flush both output streams.
left.flush();
right.flush();
|
public void | write(byte[] b)Write a byte array to both output streams.
left.write(b);
right.write(b);
|
public void | write(byte[] b, int off, int len)Write a byte array to both output streams.
left.write(b, off, len);
right.write(b, off, len);
|
public void | write(int b)Write a byte to both output streams.
left.write(b);
right.write(b);
|