Methods Summary |
---|
public void | close(){@inheritDoc}
this.wrapped.close();
|
public void | flush(){@inheritDoc}
this.wrapped.flush();
|
public long | getCount()
return this.count;
|
public void | write(byte[] bytes){@inheritDoc}
this.wrapped.write(bytes);
this.count += bytes.length;
|
public void | write(byte[] bytes, int off, int len){@inheritDoc}
this.wrapped.write(bytes, off, len);
this.count += len;
|
public void | write(int toWrite){@inheritDoc}
this.wrapped.write(toWrite);
this.count++;
|