Description
I needed to write buffered data from a IResource to the web response but since there is only #write(byte[]) I had to manually care about the offset and the length of the buffer.
It would be much simpler if there is org.apache.wicket.request.Response.write(byte[] buf, int offset, int length) which will delegate this to the underlying output stream impl.