Hi all,
Hopefully this is a quick and easy question about BufferedOutputStreams and DataOutputStreams in java.
When I write bytes to the output stream like
myBufferedOutputStream.write(array);
myDataOutputStream.write(array);
Do these methods write them instantly to the stream and return or do they ever block?
I did not see anything in the core java docs, but perhaps my question doesn't make sense because writes never block?
Someone please set me straight.
Thanks, jbu