io.logspace.agent.shaded.quartz.impl.DefaultThreadExecutor Maven / Gradle / Ivy
package io.logspace.agent.shaded.quartz.impl;
import io.logspace.agent.shaded.quartz.spi.ThreadExecutor;
/**
* Schedules work on a newly spawned thread. This is the default Quartz
* behavior.
*
* @author matt.accola
* @version $Revision$ $Date$
*/
public class DefaultThreadExecutor implements ThreadExecutor {
public void initialize() {
}
public void execute(Thread thread) {
thread.start();
}
}