Esempio n. 1
0
 /**
  * Update all known Provisioners with new serviceLimit value
  *
  * @param serviceLimit The maximum number of services the Cybernode has been configured to
  *     instantiate
  */
 void updateMonitors(int serviceLimit) {
   setServiceLimit(serviceLimit);
   updateMonitors(adapter.getResourceCapability(), adapter.getDeployedServices());
 }
Esempio n. 2
0
 /*
  * Get the DeployedService instances
  */
 List<DeployedService> getServiceDeployments() {
   return adapter.getDeployedServices();
 }
Esempio n. 3
0
 /** Update all known Provisioners */
 void updateMonitors() {
   updateMonitors(adapter.getResourceCapability(), adapter.getDeployedServices());
 }