Interface Scheduler<T>
- All Known Implementing Classes:
ControlledWorkerScheduler
public interface Scheduler<T>
Interface for any scheduler.
- Author:
- Andreas Schwarte
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionvoid
abort()
Abort the execution of running and queued tasks.void
done()
Inform the scheduler that a certain task is done.void
Callback to handle the result.void
Inform the scheduler that no more tasks will be scheduled.boolean
Determine if the scheduler has unfinished tasks.void
schedule
(ParallelTask<T> task) Schedule the provided task.void
shutdown()
void
Toss an exception to the scheduler.
-
Method Details
-
schedule
Schedule the provided task.- Parameters:
task
-
-
handleResult
Callback to handle the result.- Parameters:
res
-
-
done
void done()Inform the scheduler that a certain task is done. -
toss
Toss an exception to the scheduler.- Parameters:
e
-
-
abort
void abort()Abort the execution of running and queued tasks. -
shutdown
void shutdown() -
informFinish
void informFinish()Inform the scheduler that no more tasks will be scheduled. -
isRunning
boolean isRunning()Determine if the scheduler has unfinished tasks.- Returns:
- whether the scheduler is running
-