当前位置: 首页>>代码示例>>Java>>正文


Java IThreadPoolService类代码示例

本文整理汇总了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);
}
 
开发者ID:xuraylei,项目名称:fresco_floodlight,代码行数:29,代码来源:SyncClientBase.java

示例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);
}
 
开发者ID:xuraylei,项目名称:fresco_floodlight,代码行数:20,代码来源:SyncStoreCCProvider.java

示例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);
}
 
开发者ID:xuraylei,项目名称:fresco_floodlight,代码行数:23,代码来源:FlowReconcileManager.java

示例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();
}
 
开发者ID:xuraylei,项目名称:fresco_floodlight,代码行数:23,代码来源:TopologyManager.java

示例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));
}
 
开发者ID:xuraylei,项目名称:fresco_floodlight,代码行数:21,代码来源:FloodlightProvider.java

示例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);
}
 
开发者ID:xuraylei,项目名称:fresco_floodlight,代码行数:25,代码来源:SyncManagerTest.java

示例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);
}
 
开发者ID:xuraylei,项目名称:fresco_floodlight,代码行数:24,代码来源:RemoteStoreTest.java

示例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);
}
 
开发者ID:xuraylei,项目名称:fresco_floodlight,代码行数:18,代码来源:TopologyInstanceTest.java

示例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);
}
 
开发者ID:nsg-ethz,项目名称:iTAP-controller,代码行数:17,代码来源:TopologyInstanceTest.java

示例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);
}
 
开发者ID:zhenshengcai,项目名称:floodlight-hardware,代码行数:20,代码来源:SyncStoreCCProvider.java

示例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);
}
 
开发者ID:JianqingJiang,项目名称:QoS-floodlight,代码行数:24,代码来源:FlowReconcileManager.java

示例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);
}
 
开发者ID:JianqingJiang,项目名称:QoS-floodlight,代码行数:23,代码来源:RemoteStoreTest.java

示例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);
}
 
开发者ID:JianqingJiang,项目名称:QoS-floodlight,代码行数:19,代码来源:FlowReconcileMgrTest.java


注:本文中的net.floodlightcontroller.threadpool.IThreadPoolService类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。