本文整理汇总了Java中net.floodlightcontroller.debugcounter.NullDebugCounter类的典型用法代码示例。如果您正苦于以下问题:Java NullDebugCounter类的具体用法?Java NullDebugCounter怎么用?Java NullDebugCounter使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
NullDebugCounter类属于net.floodlightcontroller.debugcounter包,在下文中一共展示了NullDebugCounter类的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: setupSyncManager
import net.floodlightcontroller.debugcounter.NullDebugCounter; //导入依赖的package包/类
protected void setupSyncManager(FloodlightModuleContext fmc,
SyncManager syncManager, Node thisNode)
throws Exception {
fmc.addService(IThreadPoolService.class, tp);
fmc.addService(IDebugCounterService.class, new NullDebugCounter());
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:JianqingJiang,项目名称:QoS-floodlight,代码行数:24,代码来源:SyncManagerTest.java
示例2: setUp
import net.floodlightcontroller.debugcounter.NullDebugCounter; //导入依赖的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
示例3: setUp
import net.floodlightcontroller.debugcounter.NullDebugCounter; //导入依赖的package包/类
@Before
public void setUp() throws Exception {
keyStoreFile = new File(keyStoreFolder.getRoot(),
"keystore.jceks");
CryptoUtil.writeSharedSecret(keyStoreFile.getAbsolutePath(),
keyStorePassword,
CryptoUtil.secureRandom(16));
nodes = new ArrayList<Node>();
nodes.add(new Node("localhost", 40101, (short)1, (short)1));
nodeString = mapper.writeValueAsString(nodes);
tp = new ThreadPool();
syncManager = new SyncManager();
FloodlightModuleContext fmc = new FloodlightModuleContext();
fmc.addService(IThreadPoolService.class, tp);
fmc.addService(IDebugCounterService.class, new NullDebugCounter());
fmc.addConfigParam(syncManager, "nodes", nodeString);
fmc.addConfigParam(syncManager, "thisNode", ""+1);
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);
}
开发者ID:JianqingJiang,项目名称:QoS-floodlight,代码行数:35,代码来源:ClientTest.java
注:本文中的net.floodlightcontroller.debugcounter.NullDebugCounter类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论