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

I'm using a ObjectStream over a TCP connection to send data from a client to a server. Sometimtes the client is terminated while the server still waits for new data. In these cases readObject() is staying blocked without of throwing a Exception and my computation stops.

How can i determine if the ObjectStream is disconnected or only waiting for more data?

Using a timeout is difficult because of long delays between communication.

share|improve this question

1 Answer

up vote 1 down vote accepted

The only safe way is to use a timeout. I suspect the long delay you are seeing in detecting a disconnect is due to the nature of the network you have.

Is it really a problem if computation of a dead connection has stopped. This may waste resources for a short period but you should detect a failure within minutes and clean resources then.

share|improve this answer
Thanks ill try timeouts with some "areyouthere?"-Messages to test whether the connection is down. – kasten May 1 '11 at 15:37
You are send a heartbeat object. If you send the same one each time, it will be an efficient way to send a heartbeat. – Peter Lawrey May 1 '11 at 16:53

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.