blob: a537a3a7a3d40e52696de0fe3ce916d4dce92686 [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();
}