Package com.wowza.wms.module
Interface IModuleOnApp
- 
- All Known Subinterfaces:
- IModuleOnApp2
 - All Known Implementing Classes:
- ModuleMediaCaster
 
 public interface IModuleOnAppIModuleCallResult: method interface examples for application 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 application methods. 
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description voidonAppStart(IApplicationInstance appInstance)Invoked when an application instance is started.voidonAppStop(IApplicationInstance appInstance)Invoked when an application instance is stopped (destroyed).
 
- 
- 
- 
Method Detail- 
onAppStartvoid onAppStart(IApplicationInstance appInstance) Invoked when an application instance is started.- Parameters:
- appInstance- application instance
 
 - 
onAppStopvoid onAppStop(IApplicationInstance appInstance) Invoked when an application instance is stopped (destroyed).- Parameters:
- appInstance- application instance
 
 
- 
 
-