Ask Your Question
3

What is the reason for Java's PipedInputStream becoming stuck indefinitely when a value greater than the buffer size is written?

asked 2023-06-09 04:15:03 +0000

ladyg gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
3

answered 2023-06-09 04:27:02 +0000

woof gravatar image

Java's PipedInputStream becomes stuck indefinitely when a value greater than the buffer size is written because the PipedInputStream and PipedOutputStream are designed to be used in a piped communication between two threads. When writing to a PipedInputStream, the data is stored in a buffer until it is read by the receiving thread. If the buffer fills up and the receiving thread has not yet read the data, the writing thread will block until some space is made available in the buffer. When data is written to the PipedInputStream that is larger than the buffer size, the writing thread will continue to block indefinitely waiting for space to be made available, as there is no way for the receiving thread to read the data and free up space in the buffer. This is why it is important to ensure that data written to a PipedInputStream is smaller than the buffer size.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2023-06-09 04:15:03 +0000

Seen: 10 times

Last updated: Jun 09 '23