本文整理汇总了Java中net.floodlightcontroller.core.IShutdownService类的典型用法代码示例。如果您正苦于以下问题:Java IShutdownService类的具体用法?Java IShutdownService怎么用?Java IShutdownService使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
IShutdownService类属于net.floodlightcontroller.core包,在下文中一共展示了IShutdownService类的11个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: RoleManager
import net.floodlightcontroller.core.IShutdownService; //导入依赖的package包/类
/**
* @param role initial role
* @param roleChangeDescription initial value of the change description
* @throws NullPointerException if role or roleChangeDescription is null
*/
public RoleManager(@Nonnull Controller controller,
@Nonnull IShutdownService shutdownService,
@Nonnull HARole role,
@Nonnull String roleChangeDescription) {
Preconditions.checkNotNull(controller, "controller must not be null");
Preconditions.checkNotNull(role, "role must not be null");
Preconditions.checkNotNull(roleChangeDescription, "roleChangeDescription must not be null");
Preconditions.checkNotNull(shutdownService, "shutdownService must not be null");
this.currentRoleInfo = new RoleInfo(role,
roleChangeDescription,
new Date());
this.controller = controller;
this.shutdownService = shutdownService;
this.counters = new RoleManagerCounters(controller.getDebugCounter());
}
示例2: doSetUp
import net.floodlightcontroller.core.IShutdownService; //导入依赖的package包/类
private void doSetUp(HARole role) {
controller = createMock(Controller.class);
// Mock controller behavior
reset(controller);
IDebugCounterService counterService = new MockDebugCounterService();
expect(controller.getDebugCounter()).andReturn(counterService).anyTimes();
replay(controller);
IShutdownService shutdownService = createMock(IShutdownService.class);
roleManager = new RoleManager(controller, shutdownService , role, "test");
// Make sure the desired role is set
assertTrue(roleManager.getRole().equals(role));
}
示例3: RoleManager
import net.floodlightcontroller.core.IShutdownService; //导入依赖的package包/类
/**
* @param role initial role
* @param roleChangeDescription initial value of the change description
* @throws NullPointerException if role or roleChangeDescription is null
*/
public RoleManager(@Nonnull Controller controller,
@Nonnull IShutdownService shutdownService,
@Nonnull HARole role,
@Nonnull String roleChangeDescription,
@Nonnull IClusterService clusterService) {
Preconditions.checkNotNull(controller, "controller must not be null");
Preconditions.checkNotNull(role, "role must not be null");
Preconditions.checkNotNull(roleChangeDescription, "roleChangeDescription must not be null");
Preconditions.checkNotNull(shutdownService, "shutdownService must not be null");
Preconditions.checkNotNull(clusterService, "clusterService must not be null");
this.currentRoleInfo = new RoleInfo(role,
roleChangeDescription,
new Date());
this.controller = controller;
this.shutdownService = shutdownService;
this.counters = new RoleManagerCounters(controller.getDebugCounter());
this.clusterService=clusterService;
}
示例4: doSetUp
import net.floodlightcontroller.core.IShutdownService; //导入依赖的package包/类
private void doSetUp(HARole role) {
controller = createMock(Controller.class);
// Mock controller behavior
reset(controller);
IDebugCounterService counterService = new MockDebugCounterService();
expect(controller.getDebugCounter()).andReturn(counterService).anyTimes();
replay(controller);
IShutdownService shutdownService = createMock(IShutdownService.class);
roleManager = new RoleManager(controller, shutdownService , role, "test",null);
// Make sure the desired role is set
assertTrue(roleManager.getRole().equals(role));
}
示例5: getModuleDependencies
import net.floodlightcontroller.core.IShutdownService; //导入依赖的package包/类
@Override
public Collection<Class<? extends IFloodlightService>>
getModuleDependencies() {
ArrayList<Class<? extends IFloodlightService>> deps = new ArrayList<Class<? extends IFloodlightService>>();
deps.add(IShutdownService.class);
return deps;
}
示例6: startUp
import net.floodlightcontroller.core.IShutdownService; //导入依赖的package包/类
@Override
public void startUp(FloodlightModuleContext context) {
IShutdownService shutdownService =
context.getServiceImpl(IShutdownService.class);
shutdownService.registerShutdownListener(new ShutdownListenenerDelegate());
DebugEventAppender.setDebugEventServiceImpl(this);
}
示例7: getModuleDependencies
import net.floodlightcontroller.core.IShutdownService; //导入依赖的package包/类
@Override
public Collection<Class<? extends IFloodlightService>> getModuleDependencies() {
Collection<Class<? extends IFloodlightService>> l =
new ArrayList<Class<? extends IFloodlightService>>();
l.add(IFloodlightProviderService.class);
l.add(IStorageSourceService.class);
l.add(IThreadPoolService.class);
l.add(IRestApiService.class);
l.add(IShutdownService.class);
return l;
}
示例8: getModuleDependencies
import net.floodlightcontroller.core.IShutdownService; //导入依赖的package包/类
@Override
public Collection<Class<? extends IFloodlightService>> getModuleDependencies() {
ArrayList<Class<? extends IFloodlightService>> deps =
new ArrayList<Class<? extends IFloodlightService>>();
deps.add(IShutdownService.class);
return deps;
}
示例9: getModuleServices
import net.floodlightcontroller.core.IShutdownService; //导入依赖的package包/类
@Override
public Collection<Class<? extends IFloodlightService>> getModuleServices() {
Collection<Class<? extends IFloodlightService>> l =
new ArrayList<>();
l.add(IShutdownService.class);
return l;
}
示例10: getServiceImpls
import net.floodlightcontroller.core.IShutdownService; //导入依赖的package包/类
@Override
public Map<Class<? extends IFloodlightService>, IFloodlightService>
getServiceImpls() {
Map<Class<? extends IFloodlightService>, IFloodlightService> m =
new HashMap<>();
m.put(IShutdownService.class, this);
return m;
}
示例11: setUp
import net.floodlightcontroller.core.IShutdownService; //导入依赖的package包/类
@Override
@Before
public void setUp() throws Exception {
debugEvent = new DebugEventService();
FloodlightModuleContext fmc = new FloodlightModuleContext();
IShutdownService shutdownService =
EasyMock.createMock(IShutdownService.class);
shutdownService.registerShutdownListener(anyObject(IShutdownListener.class));
EasyMock.expectLastCall().once();
EasyMock.replay(shutdownService);
fmc.addService(IShutdownService.class, shutdownService);
debugEvent.startUp(fmc);
EasyMock.verify(shutdownService);
}