Uses of Class
org.dbe.eve.EvEService

Packages that use EvEService
org.dbe.eve   
org.dbe.eve.ga.impl This package provides a default implementation of a Genetic Algorithm. 
org.dbe.eve.net Provides the classes and interfaces that are necessary to build up the Habitat Network, and to allow services migration. 
org.dbe.eve.util This package provides some helper classes for the HabitatService. 
 

Uses of EvEService in org.dbe.eve
 

Methods in org.dbe.eve that return EvEService
 EvEService ServicePool.getEvEService(java.lang.Object i)
          Same method as Map.get (Object), but specifically to ServicePool, so people that don't know what this Interface returns can use it.
 EvEService ServicePoolImpl.getEvEService(java.lang.Object i)
           
 EvEService[] Solution.getServices()
           
 

Methods in org.dbe.eve with parameters of type EvEService
 void ServiceManager.addService(EvEService service)
           
 void HabitatServiceImpl.importEvEService(EvEService service)
           
 void HabitatService.importEvEService(EvEService service)
          The send method is invoked by the local HabitatService, if the habitat thinks that a service is worth spreading to the connected habitats
 

Uses of EvEService in org.dbe.eve.ga.impl
 

Methods in org.dbe.eve.ga.impl that return EvEService
 EvEService[] SolutionImpl.getServices()
          The Set of Services of which this solution consists
 EvEService[] SolutionImpl.getSolution()
           
 

Methods in org.dbe.eve.ga.impl with parameters of type EvEService
 void SolutionImpl.setSolution(EvEService[] solution)
           
 

Constructors in org.dbe.eve.ga.impl with parameters of type EvEService
SolutionImpl(float fitnessValue, EvEService[] solution)
          Constructor.
 

Uses of EvEService in org.dbe.eve.net
 

Methods in org.dbe.eve.net with parameters of type EvEService
 void NetworkManagerImpl.migrate(EvEService service, java.lang.String targetHabitatId)
           
 void NetworkManager.migrate(EvEService service, java.lang.String targetHabitatId)
          Method for targeted migration.
 void NetworkManagerImpl.receive(EvEService service)
           
 void NetworkManager.receive(EvEService service)
          This method is usually called by the HabitatService.
 void NetworkManagerImpl.send(EvEService service)
           
 void NetworkManager.send(EvEService service)
          Triggers the random migration of the provided service to all connected habitats.
 

Uses of EvEService in org.dbe.eve.util
 

Methods in org.dbe.eve.util that return EvEService
(package private)  EvEService PopulationHelper.createRndEvEService(java.lang.String smid)