Interface ErrorPropagatingOutputStream
- All Known Implementing Classes:
FastPipedOutputStream,Pipe
OutputStream that's connected to an InputStream somewhere,
which provides ability to have InputStream report an error.- Since:
- 2.35
- Author:
- Kohsuke Kawaguchi
-
Method Summary
Modifier and TypeMethodDescriptionvoidCloses the stream and causes the readingInputStreamto report an error.
-
Method Details
-
error
Closes the stream and causes the readingInputStreamto report an error.This method is somewhat like
OutputStream.close(), in that it signals the end of a stream. In addition to what the close method does, this method will cause theInputStream.read()method (or any other overloaded versions) to throw anIOExceptionwith the given throwable as the cause.InputStreamwill report an error only after all the data that has written before is read. IOW, the error will not magically jump over the data that was written.This is useful to propagate error over a pipe. If used over a channel with the remoting library that doesn't yet support this, or if the
OutputStreamisn't connecting to anInputStream, this method behaves exactly likeOutputStream.close().If
OutputStreamis already closed or error state is set, this method will be no-op.- Parameters:
e- if null, this method behaves exactly likeOutputStream.close()- Throws:
IOException
-