Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is it possible to tell from an AsyncContext, whether it has completed, timed out or still waiting to be completed?

I know it's possible to listen for timeout or complete events, but I'd prefer not to define 4 AsyncListener listener methods just to record this information.

share|improve this question

1 Answer

up vote 1 down vote accepted

If I am not mistaken Tomcat returns null when AsyncContext.getRequest() is called on timeouted AsyncContext.

I can not confirm this behaviour now, moreover it is not documented, hence should be considered unsafe and not portable.

BTW Tomcat was doing that because it reuses HttpServletRequest and response objects once the request is handled, just like it reuses servlet instances or threads. Sounds like insane optimization for me, but the spec does not forbid that...

share|improve this answer

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.