1#ifndef Cpl_MApp_ManagerApi_h_
2#define Cpl_MApp_ManagerApi_h_
36 virtual bool startMApp(
const char* mappName,
char* optionalArgs )
noexcept = 0;
42 virtual bool stopMApp(
const char* mappName )
noexcept = 0;
This abstract class defines the interface for a Micro Application (MApp).
Definition MAppApi.h:37
This abstract class defines the "manager" interface to for starting, stopping, etc.
Definition ManagerApi.h:26
virtual bool getAvailableMApps(Cpl::MApp::MAppApi *dstList[], size_t dstMaxElements, size_t &numElemsFound) noexcept=0
This method returns a list of started MApps.
virtual Cpl::MApp::MAppApi * lookUpMApp(const char *mappName) noexcept=0
This method returns a pointer to the named MApp instance.
virtual void stopAllMApps() noexcept=0
This method is used to stop ALL currently started MApp instances.
virtual bool startMApp(const char *mappName, char *optionalArgs) noexcept=0
This method is used to the specified MApp.
virtual bool getStartedMApps(Cpl::MApp::MAppApi *dstList[], size_t dstMaxElements, size_t &numElemsFound) noexcept=0
This method returns a list of started MApps.
virtual bool stopMApp(const char *mappName) noexcept=0
This method is used to stop the specified running MApp.
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20