Package com.wowza.wms.module
Interface IModuleOnConnect
- 
 public interface IModuleOnConnectIModuleOnConnect: method interface examples for client level methods in a module. Since module method must be implemented as static method a module cannot directly implements this interface. This interface only serves as an example of the method names and call signature needed to implement these client methods. 
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description voidonConnect(IClient client, com.wowza.wms.request.RequestFunction function, AMFDataList params)Invoked when a client connection is initiated.voidonConnectAccept(IClient client)Invoked when a client connection is accepted.voidonConnectReject(IClient client)Invoked when a client connection is rejected.voidonDisconnect(IClient client)Invoked when a client disconnects.
 
- 
- 
- 
Method Detail- 
onConnectvoid onConnect(IClient client, com.wowza.wms.request.RequestFunction function, AMFDataList params) Invoked when a client connection is initiated. It is within this method that module can call to client.acceptConnection or client.rejectConnection.- Parameters:
- client- client
- function- function object
- params- function parameters
 
 - 
onDisconnectvoid onDisconnect(IClient client) Invoked when a client disconnects.- Parameters:
- client- client
 
 - 
onConnectAcceptvoid onConnectAccept(IClient client) Invoked when a client connection is accepted.- Parameters:
- client- client
 
 - 
onConnectRejectvoid onConnectReject(IClient client) Invoked when a client connection is rejected.- Parameters:
- client- client
 
 
- 
 
-