Uses of Interface
rcf.core.framework.services.Service

Packages that use Service
radtools The main package of the RADTools project, contains all the primary documentation. 
rcf.core.framework Contains the primary run time and management classes for RCF. 
rcf.core.framework.services Contains the Application and Service abstractions which form the basis of applications which use the RCF framework
 

Uses of Service in radtools
 

Classes in radtools that implement Service
 class Main
          The main class of the RADTools project.
 

Uses of Service in rcf.core.framework
 

Subinterfaces of Service in rcf.core.framework
 interface Framework
          TODO: Javadoc Framework Lifecycle: ThreadLocal stores the current application.
 

Classes in rcf.core.framework that implement Service
static class Framework.Default
          TODO: Javadoc
 

Fields in rcf.core.framework with type parameters of type Service
protected  rcf.core.util.collection.Collection<Service> Framework.Default.services
          TODO: Javadoc
 

Methods in rcf.core.framework that return types with arguments of type Service
 rcf.core.util.collection.ImmutableCollection<Service> Framework.services()
          TODO: Javadoc Collection of running services.
 rcf.core.util.collection.ImmutableCollection<Service> Framework.Default.services()
           
 

Methods in rcf.core.framework with parameters of type Service
 void Framework.Default.run(Service service)
           
 

Uses of Service in rcf.core.framework.services
 

Subinterfaces of Service in rcf.core.framework.services
 interface Application
          TODO: Javadoc An application will perform most of it's work in the ConcurrentRunnableTask.run() method, and should not require a call to ConcurrentRunnableTask.commit().
 

Classes in rcf.core.framework.services that implement Service
 class AbstractApplication
          TODO: Javadoc This class implements all of the methods from the Application interface.
 class AbstractService
          TODO: Javadoc Upon receiving a commit event, services should check if something is in progress, and commit if not.