Package jadex.micro.examples.mandelbrot
Interface IProgressService
-
- All Known Implementing Classes:
ProgressService
public interface IProgressService
Interface for getting information about the progress of a task.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IFuture<java.lang.Integer>
getProgress(java.lang.Object taskid)
Get the progress (percentage as integer) of a given task.
-
-
-
Method Detail
-
getProgress
IFuture<java.lang.Integer> getProgress(java.lang.Object taskid)
Get the progress (percentage as integer) of a given task.- Parameters:
taskid
- The id of the task.- Returns:
- A future object holding the progress as a percentage integer value.
-
-