| Package | Description |
|---|---|
| com.wowza.wms.http | |
| com.wowza.wms.vhost | |
| com.wowza.wms.websocket.model |
| Modifier and Type | Method and Description |
|---|---|
java.util.List<IWebSocketSession> |
IHTTPProvider.getWebSocketSessions()
Get a list of all WebSocket sessions for this HTTPProvider
|
| Modifier and Type | Method and Description |
|---|---|
void |
IHTTPProvider.addWebSocketSession(IWebSocketSession webSocketSession)
Add WebSocket session
|
boolean |
IHTTPProvider.removeWebSocketSession(IWebSocketSession webSocketSession)
Remove WebSocket session
|
| Modifier and Type | Method and Description |
|---|---|
java.util.List<IWebSocketSession> |
IVHost.getWebSocketSessions()
Get a list of active WebSocket sessions
|
| Modifier and Type | Method and Description |
|---|---|
void |
IWebSocketEventNotify.onCreate(IWebSocketSession webSocketSession)
Trigger when WebSocket session is created
|
void |
WebSocketEventNotifyBase.onCreate(IWebSocketSession webSocketSession)
Trigger when WebSocket session is created
|
void |
IWebSocketEventNotify.onDestroy(IWebSocketSession webSocketSession)
Triggered when WebSocket session is destroyed
|
void |
WebSocketEventNotifyBase.onDestroy(IWebSocketSession webSocketSession)
Triggered when WebSocket session is destroyed
|
void |
IWebSocketEventNotify2.onIdle(IWebSocketSession webSocketSession) |
void |
WebSocketEventNotifyBase.onIdle(IWebSocketSession webSocketSession)
Triggered for idle events
|
void |
IWebSocketEventNotify.onMessage(IWebSocketSession webSocketSession,
WebSocketMessage message)
Triggered when WebSocket message (binary or text) is received (control messages are not included).
|
void |
WebSocketEventNotifyBase.onMessage(IWebSocketSession webSocketSession,
WebSocketMessage message)
Triggered when WebSocket message (binary or text) is received (control messages are not included).
|
void |
IWebSocketPingResult.onResult(IWebSocketSession webSocketSession,
long pingTime,
long pingId,
boolean result)
Triggered when WebSocket pong is received or pong is not received within ping timeout
|