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

org.quartz.impl.DefaultThreadExecutor Maven / Gradle / Ivy

There is a newer version: 2.5.0-rc1
Show newest version
package org.quartz.impl;

import org.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();
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy