Package org.cyclos.impl.utils.tasks
Interface BackgroundTaskHandlerImplementor
-
- All Superinterfaces:
BackgroundTaskHandler
public interface BackgroundTaskHandlerImplementor extends BackgroundTaskHandler
Contains internal methods forBackgroundTaskHandler
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidexecute(BackgroundTaskExecutionContext task)Executes the task nowSet<RunningTaskDescriptor>getRunningTasks()Returns an unmodifiable view of the background tasks that are currently running.-
Methods inherited from interface org.cyclos.impl.utils.tasks.BackgroundTaskHandler
custom, custom, isScheduledOrRunning, newForkJoin, remove, schedule
-
-
-
-
Method Detail
-
execute
void execute(BackgroundTaskExecutionContext task)
Executes the task now
-
getRunningTasks
Set<RunningTaskDescriptor> getRunningTasks()
Returns an unmodifiable view of the background tasks that are currently running.
-
-