本文整理汇总了Java中net.floodlightcontroller.core.internal.OFConnection类的典型用法代码示例。如果您正苦于以下问题:Java OFConnection类的具体用法?Java OFConnection怎么用?Java OFConnection使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
OFConnection类属于net.floodlightcontroller.core.internal包,在下文中一共展示了OFConnection类的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: setUp
import net.floodlightcontroller.core.internal.OFConnection; //导入依赖的package包/类
@Before
public void setUp() throws Exception {
factory = OFFactories.getFactory(OFVersion.OF_13);
switchId = DatapathId.of(1);
timer = new HashedWheelTimer();
channel = EasyMock.createMock(Channel.class);
IDebugCounterService debugCounterService = new DebugCounterServiceImpl();
debugCounterService.registerModule(OFConnectionCounters.COUNTER_MODULE);
conn = new OFConnection(switchId, factory, channel, OFAuxId.MAIN,
debugCounterService, timer);
eventLoop = new TestEventLoop();
expect(channel.eventLoop()).andReturn(eventLoop).anyTimes();
}
示例2: getConnectionByCategory
import net.floodlightcontroller.core.internal.OFConnection; //导入依赖的package包/类
@Override
public OFConnection getConnectionByCategory(
LogicalOFMessageCategory category) {
// TODO Auto-generated method stub
return null;
}
示例3: getConnectionByCategory
import net.floodlightcontroller.core.internal.OFConnection; //导入依赖的package包/类
/**
* Get a connection specified by the logical OFMessage category
* @param category the category for the connection the user desires
* @return an OF Connection
*/
OFConnection getConnectionByCategory(LogicalOFMessageCategory category);