Hi all, My use case is that I need to cancel a long running database execution if the client disconnects.
Setting setMaxInactiveInterval in combination with a HttpSessionListener sessionDestroyed event seems promising but the events only generate on the next attempt to connect with the expired session. I could probably implement a thread which periodically checked every session but I'm wondering if there are any common patterns for this use case. I see AsyncContext raised as an option but the listeners on the AsyncContext do not detect if a client disconnects and leave me in the same place as using a HttpSessionListener. Thanks for your help!
_______________________________________________ jetty-users mailing list [email protected] To unsubscribe from this list, visit https://www.eclipse.org/mailman/listinfo/jetty-users
