本文整理汇总了Java中org.opendaylight.controller.sal.core.api.Broker.ConsumerSession类的典型用法代码示例。如果您正苦于以下问题:Java ConsumerSession类的具体用法?Java ConsumerSession怎么用?Java ConsumerSession使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
ConsumerSession类属于org.opendaylight.controller.sal.core.api.Broker包,在下文中一共展示了ConsumerSession类的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: onSessionInitiated
import org.opendaylight.controller.sal.core.api.Broker.ConsumerSession; //导入依赖的package包/类
@Override
public void onSessionInitiated(ConsumerSession session) {
this.session = session;
this.notificationService = session
.getService(NotificationService.class);
notificationService.addNotificationListener(
DemoUtils.alertNotification, alertLogger);
if (isChangeAware()) {
notificationService.addNotificationListener(
DemoUtils.changeNotification, changeLogger);
}
}
开发者ID:lbchen,项目名称:ODL,代码行数:13,代码来源:DemoConsumerImpl.java
示例2: getServiceForSession
import org.opendaylight.controller.sal.core.api.Broker.ConsumerSession; //导入依赖的package包/类
<T extends BrokerService> T getServiceForSession(Class<T> service,
ConsumerSession session);
开发者ID:hashsdn,项目名称:hashsdn-controller,代码行数:3,代码来源:BrokerModule.java
示例3: onSessionInitiated
import org.opendaylight.controller.sal.core.api.Broker.ConsumerSession; //导入依赖的package包/类
@Override
public void onSessionInitiated(final ConsumerSession session) {
// NOOP
}
开发者ID:opendaylight,项目名称:messaging4transport,代码行数:5,代码来源:NoopDOMConsumer.java
示例4: newNotificationConsumerService
import org.opendaylight.controller.sal.core.api.Broker.ConsumerSession; //导入依赖的package包/类
private NotificationService newNotificationConsumerService(
ConsumerSession session) {
return new NotificationConsumerSessionImpl();
}
开发者ID:lbchen,项目名称:ODL,代码行数:5,代码来源:NotificationModule.java
示例5: newNotificationProviderService
import org.opendaylight.controller.sal.core.api.Broker.ConsumerSession; //导入依赖的package包/类
private NotificationProviderService newNotificationProviderService(
ConsumerSession session) {
return new NotificationProviderSessionImpl();
}
开发者ID:lbchen,项目名称:ODL,代码行数:5,代码来源:NotificationModule.java
示例6: newDataProviderService
import org.opendaylight.controller.sal.core.api.Broker.ConsumerSession; //导入依赖的package包/类
private DataProviderService newDataProviderService(ConsumerSession session) {
return new DataProviderSession();
}
开发者ID:lbchen,项目名称:ODL,代码行数:4,代码来源:DataBrokerModule.java
示例7: newDataConsumerService
import org.opendaylight.controller.sal.core.api.Broker.ConsumerSession; //导入依赖的package包/类
private DataBrokerService newDataConsumerService(ConsumerSession session) {
return new DataConsumerSession();
}
开发者ID:lbchen,项目名称:ODL,代码行数:4,代码来源:DataBrokerModule.java
示例8: onSessionInitiated
import org.opendaylight.controller.sal.core.api.Broker.ConsumerSession; //导入依赖的package包/类
/**
* Callback signaling initialization of the consumer session to the SAL.
*
* The consumer MUST use the session for all communication with SAL or
* retrieving SAL infrastructure services.
*
* This method is invoked by {@link Broker#registerConsumer(Consumer)}
*
* @param session
* Unique session between consumer and SAL.
*/
void onSessionInitiated(ConsumerSession session);
开发者ID:hashsdn,项目名称:hashsdn-controller,代码行数:13,代码来源:Consumer.java
示例9: onSessionInitiated
import org.opendaylight.controller.sal.core.api.Broker.ConsumerSession; //导入依赖的package包/类
/**
* Callback signaling initialization of the consumer session to the SAL.
*
* The consumer MUST use the session for all communication with SAL or
* retrieving SAL infrastructure services.
*
* This method is invoked by {@link Broker#registerConsumer(Consumer)}
*
* @param session
* Unique session between consumer and SAL.
*/
public void onSessionInitiated(ConsumerSession session);
开发者ID:lbchen,项目名称:ODL,代码行数:13,代码来源:Consumer.java
示例10: delegate
import org.opendaylight.controller.sal.core.api.Broker.ConsumerSession; //导入依赖的package包/类
protected abstract ConsumerSession delegate();
开发者ID:hashsdn,项目名称:hashsdn-controller,代码行数:2,代码来源:ForwardingConsumerSession.java
注:本文中的org.opendaylight.controller.sal.core.api.Broker.ConsumerSession类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论