本文整理汇总了Java中net.floodlightcontroller.threadpool.IThreadPoolService类的典型用法代码示例。如果您正苦于以下问题:Java IThreadPoolService类的具体用法?Java IThreadPoolService怎么用?Java IThreadPoolService使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
IThreadPoolService类属于net.floodlightcontroller.threadpool包,在下文中一共展示了IThreadPoolService类的13个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: connect
import net.floodlightcontroller.threadpool.IThreadPoolService; //导入依赖的package包/类
/**
* Set up the remote sync manager and prepare for requests
* @throws Exception
*/
protected void connect() throws Exception {
FloodlightModuleContext fmc = new FloodlightModuleContext();
ThreadPool tp = new ThreadPool();
syncManager = new RemoteSyncManager();
fmc.addService(IThreadPoolService.class, tp);
fmc.addService(ISyncService.class, syncManager);
fmc.addConfigParam(syncManager, "hostname", settings.hostname);
fmc.addConfigParam(syncManager, "port",
Integer.toString(settings.port));
if (settings.authScheme != null) {
fmc.addConfigParam(syncManager, "authScheme",
settings.authScheme.toString());
fmc.addConfigParam(syncManager, "keyStorePath", settings.keyStorePath);
fmc.addConfigParam(syncManager, "keyStorePassword",
settings.keyStorePassword);
}
tp.init(fmc);
syncManager.init(fmc);
tp.startUp(fmc);
syncManager.startUp(fmc);
out.println("Using remote sync service at " +
settings.hostname + ":" + settings.port);
}
示例2: init
import net.floodlightcontroller.threadpool.IThreadPoolService; //导入依赖的package包/类
@Override
public void init(SyncManager syncManager, FloodlightModuleContext context)
throws SyncException {
this.syncManager = syncManager;
threadPool = context.getServiceImpl(IThreadPoolService.class);
syncManager.registerPersistentStore(SYSTEM_NODE_STORE, Scope.GLOBAL);
syncManager.registerPersistentStore(SYSTEM_UNSYNC_STORE,
Scope.UNSYNCHRONIZED);
this.nodeStoreClient =
syncManager.getStoreClient(SYSTEM_NODE_STORE,
Short.class, Node.class);
this.nodeStoreClient.addStoreListener(new ShortListener());
this.unsyncStoreClient =
syncManager.getStoreClient(SYSTEM_UNSYNC_STORE,
String.class, String.class);
this.unsyncStoreClient.addStoreListener(new StringListener());
config = context.getConfigParams(syncManager);
}
示例3: init
import net.floodlightcontroller.threadpool.IThreadPoolService; //导入依赖的package包/类
@Override
public void init(FloodlightModuleContext context)
throws FloodlightModuleException {
floodlightProviderService = context.getServiceImpl(IFloodlightProviderService.class);
threadPoolService = context.getServiceImpl(IThreadPoolService.class);
debugCounterService = context.getServiceImpl(IDebugCounterService.class);
flowQueue = new PriorityPendingQueue<OFMatchReconcile>();
flowReconcileListeners = new ListenerDispatcher<OFType, IFlowReconcileListener>();
Map<String, String> configParam = context.getConfigParams(this);
String enableValue = configParam.get(EnableConfigKey);
registerFlowReconcileManagerDebugCounters();
// Set flowReconcile default to true
flowReconcileEnabled = true;
if (enableValue != null &&
enableValue.equalsIgnoreCase("false")) {
flowReconcileEnabled = false;
}
flowReconcileThreadRunCount = new AtomicInteger(0);
lastReconcileTime = new Date(0);
logger.debug("FlowReconcile is {}", flowReconcileEnabled);
}
示例4: init
import net.floodlightcontroller.threadpool.IThreadPoolService; //导入依赖的package包/类
@Override
public void init(FloodlightModuleContext context)
throws FloodlightModuleException {
linkDiscoveryService = context.getServiceImpl(ILinkDiscoveryService.class);
threadPoolService = context.getServiceImpl(IThreadPoolService.class);
floodlightProviderService = context.getServiceImpl(IFloodlightProviderService.class);
switchService = context.getServiceImpl(IOFSwitchService.class);
restApiService = context.getServiceImpl(IRestApiService.class);
debugCounterService = context.getServiceImpl(IDebugCounterService.class);
debugEventService = context.getServiceImpl(IDebugEventService.class);
switchPorts = new HashMap<DatapathId, Set<OFPort>>();
switchPortLinks = new HashMap<NodePortTuple, Set<Link>>();
directLinks = new HashMap<NodePortTuple, Set<Link>>();
portBroadcastDomainLinks = new HashMap<NodePortTuple, Set<Link>>();
tunnelPorts = new HashSet<NodePortTuple>();
topologyAware = new ArrayList<ITopologyListener>();
ldUpdates = new LinkedBlockingQueue<LDUpdate>();
haListener = new HAListenerDelegate();
registerTopologyDebugCounters();
registerTopologyDebugEvents();
}
示例5: init
import net.floodlightcontroller.threadpool.IThreadPoolService; //导入依赖的package包/类
@Override
public void init(FloodlightModuleContext context) throws FloodlightModuleException {
controller.setStorageSourceService(
context.getServiceImpl(IStorageSourceService.class));
controller.setPktInProcessingService(
context.getServiceImpl(IPktInProcessingTimeService.class));
controller.setDebugCounter(
context.getServiceImpl(IDebugCounterService.class));
controller.setDebugEvent(
context.getServiceImpl(IDebugEventService.class));
controller.setRestApiService(
context.getServiceImpl(IRestApiService.class));
controller.setThreadPoolService(
context.getServiceImpl(IThreadPoolService.class));
controller.setSyncService(
context.getServiceImpl(ISyncService.class));
controller.setSwitchService(
context.getServiceImpl(IOFSwitchService.class));
controller.init(context.getConfigParams(this));
}
示例6: setupSyncManager
import net.floodlightcontroller.threadpool.IThreadPoolService; //导入依赖的package包/类
protected void setupSyncManager(FloodlightModuleContext fmc,
SyncManager syncManager, Node thisNode)
throws Exception {
fmc.addService(IThreadPoolService.class, tp);
fmc.addService(IDebugCounterService.class, new MockDebugCounterService());
fmc.addService(IDebugEventService.class, new MockDebugEventService());
fmc.addConfigParam(syncManager, "configProviders",
PropertyCCProvider.class.getName());
fmc.addConfigParam(syncManager, "nodes", nodeString);
fmc.addConfigParam(syncManager, "thisNode", ""+thisNode.getNodeId());
fmc.addConfigParam(syncManager, "persistenceEnabled", "false");
fmc.addConfigParam(syncManager, "authScheme", "CHALLENGE_RESPONSE");
fmc.addConfigParam(syncManager, "keyStorePath",
keyStoreFile.getAbsolutePath());
fmc.addConfigParam(syncManager, "keyStorePassword", keyStorePassword);
tp.init(fmc);
syncManager.init(fmc);
tp.startUp(fmc);
syncManager.startUp(fmc);
syncManager.registerStore("global", Scope.GLOBAL);
syncManager.registerStore("local", Scope.LOCAL);
}
示例7: setUp
import net.floodlightcontroller.threadpool.IThreadPoolService; //导入依赖的package包/类
@Before
public void setUp() throws Exception {
FloodlightModuleContext fmc = new FloodlightModuleContext();
tp = new ThreadPool();
syncManager = new SyncManager();
remoteSyncManager = new RemoteSyncManager();
fmc.addService(IThreadPoolService.class, tp);
fmc.addService(IDebugCounterService.class, new MockDebugCounterService());
fmc.addService(IDebugEventService.class, new MockDebugEventService());
fmc.addConfigParam(syncManager, "persistenceEnabled", "false");
tp.init(fmc);
syncManager.init(fmc);
remoteSyncManager.init(fmc);
tp.startUp(fmc);
syncManager.startUp(fmc);
remoteSyncManager.startUp(fmc);
syncManager.registerStore("local", Scope.LOCAL);
}
示例8: SetUp
import net.floodlightcontroller.threadpool.IThreadPoolService; //导入依赖的package包/类
@Before
public void SetUp() throws Exception {
fmc = new FloodlightModuleContext();
linkDiscovery = EasyMock.createMock(ILinkDiscoveryService.class);
mockFloodlightProvider = new MockFloodlightProvider();
fmc.addService(IFloodlightProviderService.class, mockFloodlightProvider);
fmc.addService(IOFSwitchService.class, new MockSwitchManager());
fmc.addService(ILinkDiscoveryService.class, linkDiscovery);
fmc.addService(IDebugCounterService.class, new MockDebugCounterService());
fmc.addService(IDebugEventService.class, new MockDebugEventService());
MockThreadPoolService tp = new MockThreadPoolService();
topologyManager = new TopologyManager();
fmc.addService(IThreadPoolService.class, tp);
topologyManager.init(fmc);
tp.init(fmc);
tp.startUp(fmc);
}
示例9: SetUp
import net.floodlightcontroller.threadpool.IThreadPoolService; //导入依赖的package包/类
@Before
public void SetUp() throws Exception {
fmc = new FloodlightModuleContext();
linkDiscovery = EasyMock.createMock(ILinkDiscoveryService.class);
mockFloodlightProvider = new MockFloodlightProvider();
fmc.addService(IFloodlightProviderService.class, mockFloodlightProvider);
fmc.addService(ILinkDiscoveryService.class, linkDiscovery);
fmc.addService(IDebugCounterService.class, new MockDebugCounterService());
fmc.addService(IDebugEventService.class, new MockDebugEventService());
MockThreadPoolService tp = new MockThreadPoolService();
topologyManager = new TopologyManager();
fmc.addService(IThreadPoolService.class, tp);
topologyManager.init(fmc);
tp.init(fmc);
tp.startUp(fmc);
}
示例10: init
import net.floodlightcontroller.threadpool.IThreadPoolService; //导入依赖的package包/类
@Override
public void init(SyncManager syncManager, FloodlightModuleContext context)
throws SyncException {
this.syncManager = syncManager;
threadPool = context.getServiceImpl(IThreadPoolService.class);
syncManager.registerPersistentStore(SYSTEM_NODE_STORE, Scope.GLOBAL);
syncManager.registerPersistentStore(SYSTEM_UNSYNC_STORE,
Scope.UNSYNCHRONIZED);
this.nodeStoreClient =
syncManager.getStoreClient(SYSTEM_NODE_STORE,
Short.class, Node.class);
this.nodeStoreClient.addStoreListener(new ShortListener());
this.unsyncStoreClient =
syncManager.getStoreClient(SYSTEM_UNSYNC_STORE,
String.class, String.class);
this.unsyncStoreClient.addStoreListener(new StringListener());
config = context.getConfigParams(syncManager);
}
示例11: init
import net.floodlightcontroller.threadpool.IThreadPoolService; //导入依赖的package包/类
@Override
public void init(FloodlightModuleContext context)
throws FloodlightModuleException {
threadPool = context.getServiceImpl(IThreadPoolService.class);
counterStore = context.getServiceImpl(ICounterStoreService.class);
debugCounters = context.getServiceImpl(IDebugCounterService.class);
flowQueue = new PriorityPendingQueue<OFMatchReconcile>();
flowReconcileListeners =
new ListenerDispatcher<OFType, IFlowReconcileListener>();
Map<String, String> configParam = context.getConfigParams(this);
String enableValue = configParam.get(EnableConfigKey);
registerFlowReconcileManagerDebugCounters();
// Set flowReconcile default to true
flowReconcileEnabled = true;
if (enableValue != null &&
enableValue.equalsIgnoreCase("false")) {
flowReconcileEnabled = false;
}
flowReconcileThreadRunCount = new AtomicInteger(0);
lastReconcileTime = new Date(0);
logger.debug("FlowReconcile is {}", flowReconcileEnabled);
}
示例12: setUp
import net.floodlightcontroller.threadpool.IThreadPoolService; //导入依赖的package包/类
@Before
public void setUp() throws Exception {
FloodlightModuleContext fmc = new FloodlightModuleContext();
tp = new ThreadPool();
syncManager = new SyncManager();
remoteSyncManager = new RemoteSyncManager();
fmc.addService(IThreadPoolService.class, tp);
fmc.addService(IDebugCounterService.class, new NullDebugCounter());
fmc.addConfigParam(syncManager, "persistenceEnabled", "false");
tp.init(fmc);
syncManager.init(fmc);
remoteSyncManager.init(fmc);
tp.startUp(fmc);
syncManager.startUp(fmc);
remoteSyncManager.startUp(fmc);
syncManager.registerStore("local", Scope.LOCAL);
}
示例13: setUp
import net.floodlightcontroller.threadpool.IThreadPoolService; //导入依赖的package包/类
@Before
public void setUp() throws Exception {
super.setUp();
fmc = new FloodlightModuleContext();
flowReconcileMgr = new FlowReconcileManager();
threadPool = new MockThreadPoolService();
counterStore = createMock(ICounterStoreService.class);
fmc.addService(ICounterStoreService.class, counterStore);
fmc.addService(IThreadPoolService.class, threadPool);
threadPool.init(fmc);
flowReconcileMgr.init(fmc);
threadPool.startUp(fmc);
flowReconcileMgr.startUp(fmc);
}