edu.memphis.ccrg.lida.workspace.structurebuildingcodelets
Interface StructureBuildingCodelet
- All Superinterfaces:
- Activatible, java.util.concurrent.Callable<FrameworkTask>, Codelet, FrameworkTask, FullyInitializable, Initializable, Learnable, java.io.Serializable
- All Known Implementing Classes:
- BasicStructureBuildingCodelet, StructureBuildingCodeletImpl
public interface StructureBuildingCodelet
- extends Codelet
Demon-like process operating on the workspace searching for particular content
which, when found, triggers its action producing its result.
Has workspace buffers it can access.
- Author:
- Ryan J. McCall
Method Summary |
java.lang.Object |
getCodeletRunResult()
Returns result of codelet's run |
void |
reset()
Clears this codelet's fields in preparation for reuse. |
Methods inherited from interface edu.memphis.ccrg.lida.framework.tasks.FrameworkTask |
getControllingTaskSpawner, getNextTicksPerRun, getScheduledTick, getTaskId, getTaskStatus, getTicksPerRun, setControllingTaskSpawner, setNextTicksPerRun, setScheduledTick, setTaskStatus, setTicksPerRun, stopRunning |
Methods inherited from interface java.util.concurrent.Callable |
call |
Methods inherited from interface edu.memphis.ccrg.lida.framework.shared.activation.Learnable |
decayBaseLevelActivation, getBaseLevelActivation, getBaseLevelDecayStrategy, getBaseLevelExciteStrategy, getLearnableRemovalThreshold, getTotalActivationStrategy, reinforceBaseLevelActivation, setBaseLevelActivation, setBaseLevelDecayStrategy, setBaseLevelExciteStrategy, setBaseLevelRemovalThreshold, setTotalActivationStrategy |
Methods inherited from interface edu.memphis.ccrg.lida.framework.shared.activation.Activatible |
decay, excite, getActivatibleRemovalThreshold, getActivation, getDecayStrategy, getExciteStrategy, getTotalActivation, isRemovable, setActivatibleRemovalThreshold, setActivation, setDecayStrategy, setExciteStrategy |
getCodeletRunResult
java.lang.Object getCodeletRunResult()
- Returns result of codelet's run
- Returns:
- Current information about the codelet's progress
reset
void reset()
- Clears this codelet's fields in preparation for reuse.
Idea is that the same codelet object is reconfigured at runtime
after it finishes to be run as a different altogether codelet.