本文整理汇总了Java中net.floodlightcontroller.debugevent.DebugEventService.EventCategoryBuilder类的典型用法代码示例。如果您正苦于以下问题:Java EventCategoryBuilder类的具体用法?Java EventCategoryBuilder怎么用?Java EventCategoryBuilder使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
EventCategoryBuilder类属于net.floodlightcontroller.debugevent.DebugEventService包,在下文中一共展示了EventCategoryBuilder类的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: registerDeviceManagerDebugEvents
import net.floodlightcontroller.debugevent.DebugEventService.EventCategoryBuilder; //导入依赖的package包/类
private void registerDeviceManagerDebugEvents() throws FloodlightModuleException {
if (debugEventService == null) {
logger.error("debugEventService should not be null");
}
EventCategoryBuilder<DeviceEvent> ecb = debugEventService.buildEvent(DeviceEvent.class);
debugEventCategory = ecb.setModuleName(PACKAGE)
.setEventName("hostevent")
.setEventDescription("Host added, removed, updated, or moved")
.setEventType(EventType.ALWAYS_LOG)
.setBufferCapacity(500)
.setAckable(false)
.register();
}
开发者ID:xuraylei,项目名称:fresco_floodlight,代码行数:14,代码来源:DeviceManagerImpl.java
示例2: buildEvent
import net.floodlightcontroller.debugevent.DebugEventService.EventCategoryBuilder; //导入依赖的package包/类
@Override
public <T> EventCategoryBuilder<T> buildEvent(Class<T> evClass) {
DebugEventService des = new DebugEventService();
return des.buildEvent(evClass);
}
开发者ID:xuraylei,项目名称:fresco_floodlight,代码行数:6,代码来源:MockDebugEventService.java
示例3: buildEvent
import net.floodlightcontroller.debugevent.DebugEventService.EventCategoryBuilder; //导入依赖的package包/类
/**
* Returns an {@link EventCategoryBuilder} that can be used to build a new
* {@link EventCategory}. Before calling the {@literal build} method, set
* the following parameters:
*
* @param moduleName
* module registering event eg. linkdiscovery, virtualrouting.
* @param eventName
* name given to event.
* @param eventDescription
* A descriptive string describing the event.
* @param eventType
* EventType for this event. On-demand events have to be
* explicitly enabled using other methods in this API
* @param eventClass
* A user defined class that annotates the fields with
* @EventColumn. This class specifies the fields/columns for this
* event.
* @param bufferCapacity
* Number of events to store for this event in a circular buffer.
* Older events will be discarded once the buffer is full.
* @param ackable
* is the event used as part of ackable-event framework boolean
*
* @return IEventCategory with <b>newEvent</b> method that can be used
* to create instances of event of the given eventClass
* @throws MaxEventsRegistered
*/
public <T> EventCategoryBuilder<T> buildEvent(Class<T> evClass);
开发者ID:xuraylei,项目名称:fresco_floodlight,代码行数:30,代码来源:IDebugEventService.java
注:本文中的net.floodlightcontroller.debugevent.DebugEventService.EventCategoryBuilder类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论