public interface IModuleOnConnect
IModuleOnConnect: 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.
| Modifier and Type | Method | Description |
|---|---|---|
void |
onConnect(IClient client,
com.wowza.wms.request.RequestFunction function,
AMFDataList params) |
Invoked when a client connection is initiated.
|
void |
onConnectAccept(IClient client) |
Invoked when a client connection is accepted.
|
void |
onConnectReject(IClient client) |
Invoked when a client connection is rejected.
|
void |
onDisconnect(IClient client) |
Invoked when a client disconnects.
|
void onConnect(IClient client, com.wowza.wms.request.RequestFunction function, AMFDataList params)
client - clientfunction - function objectparams - function parametersvoid onConnectAccept(IClient client)
client - clientvoid onConnectReject(IClient client)
client - clientvoid onDisconnect(IClient client)
client - client