blob: a537a3a7a3d40e52696de0fe3ce916d4dce92686 [file] [log] [blame]
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001package net.floodlightcontroller.threadpool;
2
3import java.util.concurrent.ScheduledExecutorService;
4
5import net.floodlightcontroller.core.module.IFloodlightService;
6
7public interface IThreadPoolService extends IFloodlightService {
8 /**
9 * Get the master scheduled thread pool executor maintained by the
10 * ThreadPool provider. This can be used by other modules as a centralized
11 * way to schedule tasks.
12 * @return
13 */
14 public ScheduledExecutorService getScheduledExecutor();
15}