All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.smallrye.faulttolerance.standalone.TimerAccessImpl Maven / Gradle / Ivy

There is a newer version: 6.7.1
Show newest version
package io.smallrye.faulttolerance.standalone;

import io.smallrye.faulttolerance.core.timer.Timer;

final class TimerAccessImpl implements TimerAccess {
    private final Timer timer;

    TimerAccessImpl(Timer timer) {
        this.timer = timer;
    }

    @Override
    public int countScheduledTasks() {
        return timer.countScheduledTasks();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy