Package com.wowza.wms.vhost
Interface IVHostNotify
-
- All Known Implementing Classes:
ServerListenerStreamDemoPublisher
,VHostNotifyBase
public interface IVHostNotify
IVHostNotify: listener interface used by VHostSingleton addVHostListener
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
onVHostClientConnect(IVHost vhost, IClient inClient, com.wowza.wms.request.RequestFunction function, AMFDataList params)
Triggered before a client connects to this virtual host.void
onVHostCreate(IVHost vhost)
Triggered when vHost createdvoid
onVHostInit(IVHost vhost)
Triggered when vHost initializedvoid
onVHostShutdownComplete(IVHost vhost)
Triggered at the end of vhost shutdownvoid
onVHostShutdownStart(IVHost vhost)
Triggered at the beginning of vhost shutdown
-
-
-
Method Detail
-
onVHostCreate
void onVHostCreate(IVHost vhost)
Triggered when vHost created- Parameters:
vhost
-
-
onVHostInit
void onVHostInit(IVHost vhost)
Triggered when vHost initialized- Parameters:
vhost
- vhost
-
onVHostShutdownStart
void onVHostShutdownStart(IVHost vhost)
Triggered at the beginning of vhost shutdown- Parameters:
vhost
- vhost
-
onVHostShutdownComplete
void onVHostShutdownComplete(IVHost vhost)
Triggered at the end of vhost shutdown- Parameters:
vhost
- vhost
-
onVHostClientConnect
void 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 connectionfunction
- functionparams
- parameters
-
-