os.failsafe.executor.utils.DefaultSystemClock Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of failsafe-executor Show documentation
Show all versions of failsafe-executor Show documentation
Persistent executor service for Java
package os.failsafe.executor.utils;
import java.time.LocalDateTime;
public class DefaultSystemClock implements SystemClock {
@Override
public LocalDateTime now() {
return LocalDateTime.now();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy