Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am specifically referring to InputStream (Java SE) and its implementations.

How is blocking performed? I'm a little worried that they use a "busy-waiting" mechanism, as it would produce a lot of overhead. I believe they do it another way, but I'm just asking to be certain.

share|improve this question

1 Answer

up vote 5 down vote accepted

No, they don't use busy-waiting. It's up to the implementation (which will depend on the kind of input stream you're using), but generally it's likely to use a blocking OS-level API, so the efficiency will depend on the OS.

share|improve this answer
I'm talking about socket streams in particular. Could you give more information? – someguy Apr 6 '10 at 10:27
@someguy: More information about what in particular? At some point, it's got to hit the OS, right? So how do blocking system calls for sockets work at the OS level for your favourite OS? – Jon Skeet Apr 6 '10 at 10:37

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.