This content has been marked as final.
Show 2 replies
-
1. Re: Conversation timeout notification
mkouba Mar 21, 2018 8:45 AM (in response to javacoryd)Hi Cory,
there is
@Destroyed(ConversationScoped.class)
which is fired after the conversation is destroyed (see also http://docs.jboss.org/cdi/spec/1.2/cdi-spec.html#conversation_context) and the payload is conversation id (String) if the conversation context is not associated with a current Servlet request. However, the timeout is only a hint for the container. So a conversation does not necessarily have to be destroyed when the timeout occurs. -
2. Re: Conversation timeout notification
javacoryd Mar 21, 2018 12:32 PM (in response to mkouba)Thank you Martin!!!!
Cory.