Uses of Interface
com.wowza.wms.websocket.model.IWebSocketSession
- 
Packages that use IWebSocketSession Package Description com.wowza.wms.application com.wowza.wms.http com.wowza.wms.stream com.wowza.wms.vhost com.wowza.wms.websocket.model 
- 
- 
Uses of IWebSocketSession in com.wowza.wms.applicationMethods in com.wowza.wms.application with parameters of type IWebSocketSession Modifier and Type Method Description StringIApplicationInstance. resolvePlayAlias(String name, IWebSocketSession webSocket)Resolve the play alias with this application's stream name alias providerStringIApplicationInstance. resolveStreamAlias(String name, IWebSocketSession webSocket)Resolve the stream name alias with this application's stream name alias provider
- 
Uses of IWebSocketSession in com.wowza.wms.httpMethods in com.wowza.wms.http that return types with arguments of type IWebSocketSession Modifier and Type Method Description java.util.List<IWebSocketSession>IHTTPProvider. getWebSocketSessions()Get a list of all WebSocket sessions for this HTTPProviderMethods in com.wowza.wms.http with parameters of type IWebSocketSession Modifier and Type Method Description voidIHTTPProvider. addWebSocketSession(IWebSocketSession webSocketSession)Add WebSocket sessionbooleanIHTTPProvider. removeWebSocketSession(IWebSocketSession webSocketSession)Remove WebSocket session
- 
Uses of IWebSocketSession in com.wowza.wms.streamMethods in com.wowza.wms.stream with parameters of type IWebSocketSession Modifier and Type Method Description StringIMediaStreamNameAliasProvider3. resolvePlayAlias(IApplicationInstance appInstance, String name, IWebSocketSession webSocket)Resolve play alias for IWebSocketSessionStringMediaStreamNameAliasProviderBase. resolvePlayAlias(IApplicationInstance appInstance, String name, IWebSocketSession webSocket)StringIMediaStreamNameAliasProvider3. resolveStreamAlias(IApplicationInstance appInstance, String name, IWebSocketSession webSocket)Resolve stream alias for IWebSocketSessionStringMediaStreamNameAliasProviderBase. resolveStreamAlias(IApplicationInstance appInstance, String name, IWebSocketSession webSocket)
- 
Uses of IWebSocketSession in com.wowza.wms.vhostMethods in com.wowza.wms.vhost that return types with arguments of type IWebSocketSession Modifier and Type Method Description java.util.List<IWebSocketSession>IVHost. getWebSocketSessions()Get a list of active WebSocket sessions
- 
Uses of IWebSocketSession in com.wowza.wms.websocket.modelMethods in com.wowza.wms.websocket.model with parameters of type IWebSocketSession Modifier and Type Method Description voidIWebSocketEventNotify. onCreate(IWebSocketSession webSocketSession)Trigger when WebSocket session is createdvoidWebSocketEventNotifyBase. onCreate(IWebSocketSession webSocketSession)Trigger when WebSocket session is createdvoidIWebSocketEventNotify. onDestroy(IWebSocketSession webSocketSession)Triggered when WebSocket session is destroyedvoidWebSocketEventNotifyBase. onDestroy(IWebSocketSession webSocketSession)Triggered when WebSocket session is destroyedvoidIWebSocketEventNotify2. onIdle(IWebSocketSession webSocketSession)voidWebSocketEventNotifyBase. onIdle(IWebSocketSession webSocketSession)Triggered for idle eventsvoidIWebSocketEventNotify. onMessage(IWebSocketSession webSocketSession, WebSocketMessage message)Triggered when WebSocket message (binary or text) is received (control messages are not included).voidWebSocketEventNotifyBase. onMessage(IWebSocketSession webSocketSession, WebSocketMessage message)Triggered when WebSocket message (binary or text) is received (control messages are not included).voidIWebSocketPingResult. onResult(IWebSocketSession webSocketSession, long pingTime, long pingId, boolean result)Triggered when WebSocket pong is received or pong is not received within ping timeout
 
-