com.github.julior.appintrospector.RunnableTimerTask Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of app-introspector Show documentation
Show all versions of app-introspector Show documentation
A simple Spring plugin to diagnostic and inspect Spring beans at runtime. It provides JSON based services
as well as an UI based Console to execute queries and scripts against the application.
The newest version!
package com.github.julior.appintrospector;
import java.util.TimerTask;
/**
* User: rinconj
* Date: 4/9/13 11:40 AM
*/
public class RunnableTimerTask extends TimerTask {
private final Runnable body;
public RunnableTimerTask(Runnable body) {
this.body = body;
}
@Override
public void run() {
body.run();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy