I'm relatively new to the whole JSF programming world, and when implementing a timeout feature using PrimeFaces, I decided to use idleMonitor and polls. This method works, but I was wondering if the code is efficient (I set the timeout really short to test out the features).
<h:form>
<p:ajax global="false" event="keyup" />
<p:idleMonitor timeout="8000"
onidle="idleDialog.show(); poll.start(); seconds.start();"/>
<p:dialog header="Session Timeout!"
resizable="false"
draggable="false"
widgetVar="idleDialog"
modal="true"
width="350"
closable="false"
styleClass="dialog">
<br />
<h:outputText value="Your Session has been idle for 45 minutes."/>
<br />
<h:outputText value="Resume your session by clicking RESUME SESSION."/>
<br />
<b><h:outputText id="counter" value="Your will be logged off in #{counterBean.count}."/></b>
<br />
<br />
<p:poll interval="60"
oncomplete="idleDialog.hide(); window.location = '../admin/logout.jsf'"
listener="#{userBean.logout}"
widgetVar="poll"
autoStart="false"/>
<p:poll interval="1"
listener="#{counterBean.decrement}"
update="counter"
widgetVar="seconds"
autoStart="false"/>
<p:commandButton value="RESUME SESSION"
styleClass="button"
onclick="idleDialog.hide(); poll.stop(); seconds.stop();"
actionListener="#{counterBean.reCount}"/>
</p:dialog>
</h:form>