Class NoOpScheduler
- java.lang.Object
-
- com.thebuzzmedia.exiftool.core.schedulers.NoOpScheduler
-
-
Constructor Summary
Constructors Constructor Description NoOpScheduler()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
shutdown()
Shutdown scheduler: once done, the scheduler will not be usable anymore.void
start(Runnable runnable)
Schedule task.void
stop()
Stop pending task.
-
-
-
Method Detail
-
start
public void start(Runnable runnable)
Description copied from interface:Scheduler
Schedule task.
Task should not run immediately, instead it should run in a specified amount of time (implementation dependent).
-
stop
public void stop()
Description copied from interface:Scheduler
Stop pending task.
-
-