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

I want to create a thread that listens for packets for a given time period (say 30 seconds) and then returns any messages that are received whilst listening. I can do the packet collection stuff, but what is the code pattern for the threading / blocking code that lets the asynch activity run for some set time period?

thanks

share|improve this question

2 Answers

It depends on the code you are using to listen for packets, but basically (in pseudocode):

while(remainingTime > 0) {
   packet = listenForPackets(remainingTime);
   remainingTime = (initialTime + 30) - currentTime;
}
share|improve this answer
where does the threading logic go? waiting for a time period is trivial - as this example shows - what I dont know is what threading pattern/relationships I need... – MalcomTucker Aug 9 '10 at 11:06

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.