Package com.wowza.wms.vhost
Interface IVHostNotify
- 
- All Known Implementing Classes:
- ServerListenerStreamDemoPublisher,- VHostNotifyBase
 
 public interface IVHostNotifyIVHostNotify: listener interface used by VHostSingleton addVHostListener 
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description voidonVHostClientConnect(IVHost vhost, IClient inClient, com.wowza.wms.request.RequestFunction function, AMFDataList params)Triggered before a client connects to this virtual host.voidonVHostCreate(IVHost vhost)Triggered when vHost createdvoidonVHostInit(IVHost vhost)Triggered when vHost initializedvoidonVHostShutdownComplete(IVHost vhost)Triggered at the end of vhost shutdownvoidonVHostShutdownStart(IVHost vhost)Triggered at the beginning of vhost shutdown
 
- 
- 
- 
Method Detail- 
onVHostCreatevoid onVHostCreate(IVHost vhost) Triggered when vHost created- Parameters:
- vhost-
 
 - 
onVHostInitvoid onVHostInit(IVHost vhost) Triggered when vHost initialized- Parameters:
- vhost- vhost
 
 - 
onVHostShutdownStartvoid onVHostShutdownStart(IVHost vhost) Triggered at the beginning of vhost shutdown- Parameters:
- vhost- vhost
 
 - 
onVHostShutdownCompletevoid onVHostShutdownComplete(IVHost vhost) Triggered at the end of vhost shutdown- Parameters:
- vhost- vhost
 
 - 
onVHostClientConnectvoid onVHostClientConnect(IVHost vhost, IClient inClient, com.wowza.wms.request.RequestFunction function, AMFDataList params) Triggered before a client connects to this virtual host. Provides an opportunity to rewrite the information that is being used to connect.- Parameters:
- vhost-
- inClient- client object of the connection
- function- function
- params- parameters
 
 
- 
 
-