Uses of Interface
edu.memphis.ccrg.lida.framework.tasks.TaskSpawner

Packages that use TaskSpawner
edu.memphis.ccrg.lida.framework Contains classes which define the main structures of framework Agents. 
edu.memphis.ccrg.lida.framework.tasks Contains classes related to the framework's tasks (small demon-like processes) and their management. 
 

Uses of TaskSpawner in edu.memphis.ccrg.lida.framework
 

Fields in edu.memphis.ccrg.lida.framework declared as TaskSpawner
protected  TaskSpawner FrameworkModuleImpl.taskSpawner
          TaskSpawner used by this module
 

Methods in edu.memphis.ccrg.lida.framework that return TaskSpawner
 TaskSpawner FrameworkModuleImpl.getAssistingTaskSpawner()
           
 TaskSpawner FrameworkModule.getAssistingTaskSpawner()
          Returns the TaskSpawner which this FrameworkModule uses to spawn tasks.
 

Methods in edu.memphis.ccrg.lida.framework with parameters of type TaskSpawner
 void FrameworkModuleImpl.setAssistingTaskSpawner(TaskSpawner ts)
           
 void FrameworkModule.setAssistingTaskSpawner(TaskSpawner ts)
          Specify the TaskSpawner which this FrameworkModule will use to spawn tasks.
 

Uses of TaskSpawner in edu.memphis.ccrg.lida.framework.tasks
 

Classes in edu.memphis.ccrg.lida.framework.tasks that implement TaskSpawner
 class TaskSpawnerImpl
          Maintains a queue of running tasks and their task status.
 

Methods in edu.memphis.ccrg.lida.framework.tasks that return TaskSpawner
 TaskSpawner FrameworkTaskImpl.getControllingTaskSpawner()
           
 TaskSpawner FrameworkTask.getControllingTaskSpawner()
          Gets TaskSpawner that controls this FrameworkTask.
 

Methods in edu.memphis.ccrg.lida.framework.tasks with parameters of type TaskSpawner
 void FrameworkTaskImpl.setControllingTaskSpawner(TaskSpawner controllingTS)
           
 void FrameworkTask.setControllingTaskSpawner(TaskSpawner ts)
          Sets TaskSpawner that controls this FrameworkTask.
 

Constructors in edu.memphis.ccrg.lida.framework.tasks with parameters of type TaskSpawner
FrameworkTaskImpl(int ticksPerRun, TaskSpawner ts)
          Constructs a FrameworkTaskImpl with default ticksPerRun and specified controlling TaskSpawner