OzWebClient.onSessionClosed event
This event occurs when an active session has been closed in Ozeki Phone System. 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, 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."); }
More information
- JavaScript connect method
- JavaScript createCall method
- JavaScript checkWebPhoneState method
- JavaScript disconnect method
- JavaScript method initiates a call history query request
- JavaScript onCallHistoryInfoReceived method
- JavaScript onClientStateChanged event
- JavaScript onConnectionStateChanged event
- JavaScript OzWebClient.onErrorOccured event
- JavaScript OzWebClient.onIncomingCall event
- OzWebClient.onSessionCreated event
- JavaScript OzWebClient.onSessionClosed event