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

So I've got a multithreaded server app using non-blocking sockets listening for connections.

When a client connects, the client immediately sends a request and awaits a response. The server creates a new thread to handle the new connection, ensures that finishConnect is called and registers the new channel against the selector.

Now, this is the bit that gets me. It correctly detects the isReadable() status when the client has sent something - most of the time.

On occasion, it simply refuses to indicate isReadable() despite that I am absolutely sure that the client has in fact sent something. The client write method is reporting a number of bytes written, and ensuring the channel is flushed.

Seems to me like a race condition is occurring somewhere, but I can't for the life of me work out how - since the call to register correctly returns the keys interestOps as being set for OP_READ events.

Note: Adding a sleep between initial connection and performing I/O over the socket mitigates this issue to a high degree - but it's a kludge (at best) and still not 100% - eg: It seems to occur more frequently during periods of high load.

Any thoughts? Return codes/status that I'm not checking?

Much appreciated.

share|improve this question
Please show us the code. Looks to me you are assuming that on the server side there will be some data to read from the socket at the point of accepting connection. This assumption is wrong. – Alexander Pogrebnyak Oct 5 '10 at 12:10
Thanks Alex. That assumption wasn't the case, turns out I misunderstood the nature of channel.validOps() and its use with a selector. I still don't know exactly why this is the case, but explicitly setting the operations I'm interested in has solved the issue. – Tim Kane Oct 5 '10 at 13:02

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.