blob: f9460cbf52e692f1d4a84c2f3d384f006b7acc3f [file] [log] [blame]
package net.floodlightcontroller.threadpool;
import java.util.concurrent.ScheduledExecutorService;
import net.floodlightcontroller.core.module.IFloodlightService;
public interface IThreadPoolService extends IFloodlightService {
/**
* Get the master scheduled thread pool executor maintained by the
* ThreadPool provider. This can be used by other modules as a centralized
* way to schedule tasks.
*
* @return
*/
public ScheduledExecutorService getScheduledExecutor();
}