Package clickDetector.offlineFuncs
Class EchoDetectionTask
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionboolean
Call any task specific settingsboolean
canRun()
can the task be run ? This will generally be true, but may be false if the task is dependent on some other module which may not be present.getName()
boolean
task has settings which can be calledvoid
Called when processing of loaded data, or each map point worth of data, is complete.void
newDataLoad
(long startTime, long endTime, OfflineDataMapPoint mapPoint) Called when new data are loaded for offline processing (or once at the start of processing loaded data).void
Called at the start of the thread which executes this task.boolean
processDataUnit
(ClickDetection dataUnit) Process a single data unit.Methods inherited from class offlineProcessing.OfflineTask
addAffectedDataBlock, addRequiredDataBlock, addRequiredDataBlock, addRequiredDataBlock, completeTask, deleteOldData, deleteOldOutput, getAffectedBlocksList, getAffectedDataBlock, getDataBlock, getLongName, getNumAffectedDataBlocks, getNumRequiredDataBlocks, getOfflineTaskGroup, getRequiredDataBlock, getTaskControlledUnit, getUnitName, getUnitType, isDoRun, setDoRun, setOfflineTaskGroup, setParentDataBlock
-
Constructor Details
-
EchoDetectionTask
- Parameters:
clickControl
-
-
-
Method Details
-
getName
- Specified by:
getName
in classOfflineTask<ClickDetection>
- Returns:
- a name for the task, to be displayed in the dialog.
-
prepareTask
public void prepareTask()Description copied from class:OfflineTask
Called at the start of the thread which executes this task.- Overrides:
prepareTask
in classOfflineTask<ClickDetection>
-
newDataLoad
Description copied from class:OfflineTask
Called when new data are loaded for offline processing (or once at the start of processing loaded data).- Specified by:
newDataLoad
in classOfflineTask<ClickDetection>
- Parameters:
startTime
- start time of loaded dataendTime
- end time of loaded data
-
processDataUnit
Description copied from class:OfflineTask
Process a single data unit.- Specified by:
processDataUnit
in classOfflineTask<ClickDetection>
- Returns:
- true if the data unit has changed in some way so that it will need re-writing to it's binary file or database.
-
loadedDataComplete
public void loadedDataComplete()Description copied from class:OfflineTask
Called when processing of loaded data, or each map point worth of data, is complete.- Specified by:
loadedDataComplete
in classOfflineTask<ClickDetection>
-
callSettings
public boolean callSettings()Description copied from class:OfflineTask
Call any task specific settings- Overrides:
callSettings
in classOfflineTask<ClickDetection>
- Returns:
- true if settings may have changed.
-
canRun
public boolean canRun()Description copied from class:OfflineTask
can the task be run ? This will generally be true, but may be false if the task is dependent on some other module which may not be present.- Overrides:
canRun
in classOfflineTask<ClickDetection>
- Returns:
- true if it's possible to run the task.
-
hasSettings
public boolean hasSettings()Description copied from class:OfflineTask
task has settings which can be called- Overrides:
hasSettings
in classOfflineTask<ClickDetection>
- Returns:
- true or false
-