Package com.wowza.wms.client
Interface IClientNotify
- 
 public interface IClientNotifyIClientNotify: listener interface used by IApplicationInstance.addClientListener(IClientNotify)
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description voidonClientAccept(IClient client)Triggered when client connection acceptedvoidonClientConnect(IClient client)Triggered when client attempt connectionvoidonClientDisconnect(IClient client)Triggered when client disconnectedvoidonClientReject(IClient client)Triggered when client connection rejected
 
- 
- 
- 
Method Detail- 
onClientConnectvoid onClientConnect(IClient client) Triggered when client attempt connection- Parameters:
- client- client
 
 - 
onClientDisconnectvoid onClientDisconnect(IClient client) Triggered when client disconnected- Parameters:
- client- client
 
 - 
onClientAcceptvoid onClientAccept(IClient client) Triggered when client connection accepted- Parameters:
- client- client
 
 - 
onClientRejectvoid onClientReject(IClient client) Triggered when client connection rejected- Parameters:
- client- client
 
 
- 
 
-