Package com.wowza.wms.vhost
Class VHostNotifyBase
- Object
-
- com.wowza.wms.vhost.VHostNotifyBase
-
- All Implemented Interfaces:
IVHostNotify
public class VHostNotifyBase extends Object implements IVHostNotify
-
-
Constructor Summary
Constructors Constructor Description VHostNotifyBase()
-
Method Summary
All Methods Instance Methods Concrete 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
public void onVHostCreate(IVHost vhost)
Description copied from interface:IVHostNotify
Triggered when vHost created- Specified by:
onVHostCreate
in interfaceIVHostNotify
-
onVHostInit
public void onVHostInit(IVHost vhost)
Description copied from interface:IVHostNotify
Triggered when vHost initialized- Specified by:
onVHostInit
in interfaceIVHostNotify
- Parameters:
vhost
- vhost
-
onVHostShutdownStart
public void onVHostShutdownStart(IVHost vhost)
Description copied from interface:IVHostNotify
Triggered at the beginning of vhost shutdown- Specified by:
onVHostShutdownStart
in interfaceIVHostNotify
- Parameters:
vhost
- vhost
-
onVHostShutdownComplete
public void onVHostShutdownComplete(IVHost vhost)
Description copied from interface:IVHostNotify
Triggered at the end of vhost shutdown- Specified by:
onVHostShutdownComplete
in interfaceIVHostNotify
- Parameters:
vhost
- vhost
-
onVHostClientConnect
public void onVHostClientConnect(IVHost vhost, IClient inClient, com.wowza.wms.request.RequestFunction function, AMFDataList params)
Description copied from interface:IVHostNotify
Triggered before a client connects to this virtual host. Provides an opportunity to rewrite the information that is being used to connect.- Specified by:
onVHostClientConnect
in interfaceIVHostNotify
inClient
- client object of the connectionfunction
- functionparams
- parameters
-
-