io.smallrye.faulttolerance.standalone.TimerAccess Maven / Gradle / Ivy
package io.smallrye.faulttolerance.standalone;
/**
* Provides read-only view into the SmallRye Fault Tolerance timer.
*
* Implementations must be thread-safe.
*/
@Deprecated(forRemoval = true)
public interface TimerAccess {
/**
* Returns the number of tasks that are currently scheduled for execution by the timer.
* Finished tasks and tasks that are already running are not included.
*
* @return the number of currently scheduled tasks
*/
@Deprecated(forRemoval = true)
int countScheduledTasks();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy