This event occurs when an active session has been closed in Ozeki Phone System XE.
When the event is occured, the function given as a parameter of the event will
be called and that function will get the Id of the Session.
Callback method input parameters
sessionId: Type: string. The ID of the closed session.
Event usage example
In this example we will register to the onSessionClosed event.
If a session is closed in the Ozeki Phone System XE, it will send us and the sessionClosed method
will write the Id of the session on the console(Code Example 1).
//registers to the onSessionClosed event
OzWebClient.onSessionClosed(sessionClosed);
function sessionClosed(sessionId) {
console.log("The session with " + sessionId + " Id has closed.");
}
Code Example 1 - OzWebClient.onSessionClosed event example