Methods Summary |
---|
public void | close()Closes both streams.
super.close();
this.branch.close();
|
public void | flush()Flushes both streams.
super.flush();
this.branch.flush();
|
public synchronized void | write(byte[] b)Write the bytes to both streams.
super.write(b);
this.branch.write(b);
|
public synchronized void | write(byte[] b, int off, int len)Write the specified bytes to both streams.
super.write(b, off, len);
this.branch.write(b, off, len);
|
public synchronized void | write(int b)Write a byte to both streams.
super.write(b);
this.branch.write(b);
|