Nengo.ca

ca.nengo.util
Interface TaskSpawner

All Known Implementing Classes:
DecodableEnsembleImpl, NEFEnsembleImpl, NetworkArrayImpl, NetworkImpl, PlasticEnsembleImpl, PyramidalNetwork

public interface TaskSpawner

A node that uses ThreadTasks. Provides a way to easily collect every task defined


Method Summary
 void addTasks(ThreadTask[] tasks)
           
 ThreadTask[] getTasks()
           
 void setTasks(ThreadTask[] tasks)
           
 

Method Detail

getTasks

ThreadTask[] getTasks()
Returns:
The ThreadTasks used by this Node

setTasks

void setTasks(ThreadTask[] tasks)
Parameters:
tasks - Sets the tasks of the spawner to this

addTasks

void addTasks(ThreadTask[] tasks)
Parameters:
tasks - Adds the this to the tasks of the spawner

Nengo.ca