Package weka.experiment
Interface Task
-
- All Superinterfaces:
java.io.Serializable
- All Known Implementing Classes:
RemoteBoundaryVisualizerSubTask,RemoteExperimentSubTask
public interface Task extends java.io.SerializableInterface to something that can be remotely executed as a task.- Version:
- $Revision: 1.8 $
- Author:
- Mark Hall (mhall@cs.waikato.ac.nz)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidexecute()Execute this task.TaskStatusInfogetTaskStatus()Clients should be able to call this method at any time to obtain information on a current task.
-
-
-
Method Detail
-
execute
void execute()
Execute this task.
-
getTaskStatus
TaskStatusInfo getTaskStatus()
Clients should be able to call this method at any time to obtain information on a current task.- Returns:
- a TaskStatusInfo object holding info and result (if available) for this task
-
-