arrow_back history picture_as_pdf This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. ~~NOTRANS~~ ~~Title: Server-Side Call Events~~ If you call a server-side function or an action, usually you don't need more than the result on the client (UI). If you have complex business logic on server side, or if you call multiple server-side functions or actions in one single call, it would be useful to have server-side events with call information. Sometimes it's really helpful to do something after a single or all calls, e.g., cleanup of states, commit, or rollback connection(s) (if you don't use autocommit). Our JVx server implementation has some events which could be useful for your application. We've defined the interface jvx.rad.server.ICallHandler with the following methods: <file java> public CallEventHandler<IBeforeFirstCallListener> eventBeforeFirstCall(); public CallEventHandler<IAfterLastCallListener> eventAfterLastCall(); public CallEventHandler<IBeforeCallListener> eventBeforeCall(); public CallEventHandler<IAfterCallListener> eventAfterCall(); public void invokeAfterCall(Runnable pRunnable); public void invokeAfterLastCall(Runnable pRunnable); public void invokeFinally(Runnable pRunnable); </file> The ICallHandler is accessible via <file java> ServerContext.getCurrentInstance().getCallHandler() </file> or <file java> SessionContext.getCurrentInstance().getCallHandler() </file> The difference is that ServerContext always returns the call handler for the master session and SessionContext returns the call handler for the current session. If you register listeners for the ICallHandler of MasterSession, they will be notified about all calls in your application. All other sessions will be notified about own calls. The events are one feature of ICallHandler. The other feature are one-time method calls via invoke... methods. The concept is similar to invokeLater of GUI toolkits like swing or JavaFX: Execute "something" after all other methods were called. On server-side it's not good to name a method invokeLater because there are different options, e.g., invoke after current call (invokeAfterCall) or invoke after all calls (invokeAfterLastCall). We have an additional method that invokes "something" after all other operations. It's invokeFinally. The call stack could look like the following, for a single action call: <file java> connection.callAction("doServerAction"); </file> <file script> BEFORE FIRST call BEFORE call doServerAction AFTER Call invokeAfterCall AFTER LAST call invokeAfterLastCall invokeFinally </file> multiple action calls: <file java> connection.callAction(new String[] {"doServerAction", "doMailAction"}); </file> <file script> BEFORE FIRST call BEFORE call doServerAction AFTER Call invokeAfterCall BEFORE call doMailAction AFTER Call invokeAfterCall AFTER LAST call invokeAfterLastCall invokeFinally </file> == Listener Registration == You should register your listeners in a method annotated with @PostConstruct: <file java> @PostConstruct public void createSession() { ICallHandler handler = SessionContext.getCurrentInstance().getCallHandler(); handler.eventBeforeFirstCall().addListener(this, "doBeforeFirstCall"); handler.eventBeforeCall().addListener(this, "doBeforeCall"); handler.eventAfterCall().addListener(this, "doAfterCall"); handler.eventAfterLastCall().addListener(this, "doAfterLastCall"); } </file> Sure, it would be possible to register listeners in constructor of your life cycle object, but you should know that the constructor could be called unexpectedly, e.g., if you inherit one LCO from another one: <file script> Application |-Session |- Screen |- LockedScreen </file> If you're using LockedScreen, the constructors of Screen, Session, and Application will be called. You could check the class: <file java> if (getClass() == LockedScreen.class) { //register listeners } </file> but it's better to use @PostConstruct. == Unregister Listeners == Usually, it's not necessary to unregister listeners because the ICallHandler will be available as long as the session is alive. But if you're working with ServerContext, it's a good idea to remove your listeners because JVx doesn't do this automatically. Simply use a method, annotated with @PreDestroy: <file java> @PreDestroy public void destroySession() { ICallHandler handler = ServerContext.getCurrentInstance().getCallHandler(); handler.eventAfterLastCall().removeListener(this); } </file> == Invoke Methods or Listener Registration == It's not always possible to register a listener, or you won't do this because you don't need it for all your server calls. If you want to call a one-time function, please use invokeAfterCall or invokeAfterLastCall. Be careful with invokeFinally because this method was "reserved" for JVx objects.