ai.libs.jaicore.concurrent.WrappingTrackableTimerTask Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jaicore-basic Show documentation
Show all versions of jaicore-basic Show documentation
Fundamental utils required by many other starlibs projects.
package ai.libs.jaicore.concurrent;
import java.util.TimerTask;
public class WrappingTrackableTimerTask extends TrackableTimerTask {
private final TimerTask tt;
public WrappingTrackableTimerTask(final TimerTask tt) {
super();
this.tt = tt;
}
@Override
public void exec() {
this.tt.run();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy