Class Scheduler
java.lang.Object
java.lang.Thread
org.bgerp.app.exec.scheduler.Scheduler
- All Implemented Interfaces:
Runnable
Scheduler for running single or periodical tasks.
-
Nested Class Summary
Nested classes/interfaces inherited from class Thread
Thread.Builder, Thread.State, Thread.UncaughtExceptionHandler -
Field Summary
Fields inherited from class Thread
MAX_PRIORITY, MIN_PRIORITY, NORM_PRIORITY -
Method Summary
Modifier and TypeMethodDescriptionstatic final SchedulerThe singleton instance.intNumber of currently running tasks.voidrun()voidrunTask(TaskConfig taskConfig, boolean wait) Runs a task, optionally waiting for its completion.Methods inherited from class Thread
activeCount, checkAccess, clone, currentThread, dumpStack, enumerate, getAllStackTraces, getContextClassLoader, getDefaultUncaughtExceptionHandler, getId, getName, getPriority, getStackTrace, getState, getThreadGroup, getUncaughtExceptionHandler, holdsLock, interrupt, interrupted, isAlive, isDaemon, isInterrupted, isVirtual, join, join, join, join, ofPlatform, ofVirtual, onSpinWait, setContextClassLoader, setDaemon, setDefaultUncaughtExceptionHandler, setName, setPriority, setUncaughtExceptionHandler, sleep, sleep, sleep, start, startVirtualThread, stop, threadId, toString, yield
-
Method Details
-
getInstance
-
run
-
runTask
Runs a task, optionally waiting for its completion.- Parameters:
taskConfig- task configurationwait- whether to run synchronously and wait for completion- Throws:
Exception- if the task is not runnable or fails
-
getRunningTaskCount
public int getRunningTaskCount()Number of currently running tasks.- Returns:
- running task count
-