本文整理汇总了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);
}
}
示例2: getServiceForSession
import org.opendaylight.controller.sal.core.api.Broker.ConsumerSession; //导入依赖的package包/类
<T extends BrokerService> T getServiceForSession(Class<T> service,
ConsumerSession session);
示例3: onSessionInitiated
import org.opendaylight.controller.sal.core.api.Broker.ConsumerSession; //导入依赖的package包/类
@Override
public void onSessionInitiated(final ConsumerSession session) {
// NOOP
}
示例4: newNotificationConsumerService
import org.opendaylight.controller.sal.core.api.Broker.ConsumerSession; //导入依赖的package包/类
private NotificationService newNotificationConsumerService(
ConsumerSession session) {
return new NotificationConsumerSessionImpl();
}
示例5: newNotificationProviderService
import org.opendaylight.controller.sal.core.api.Broker.ConsumerSession; //导入依赖的package包/类
private NotificationProviderService newNotificationProviderService(
ConsumerSession session) {
return new NotificationProviderSessionImpl();
}
示例6: newDataProviderService
import org.opendaylight.controller.sal.core.api.Broker.ConsumerSession; //导入依赖的package包/类
private DataProviderService newDataProviderService(ConsumerSession session) {
return new DataProviderSession();
}
示例7: newDataConsumerService
import org.opendaylight.controller.sal.core.api.Broker.ConsumerSession; //导入依赖的package包/类
private DataBrokerService newDataConsumerService(ConsumerSession session) {
return new DataConsumerSession();
}
示例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);
示例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);
示例10: delegate
import org.opendaylight.controller.sal.core.api.Broker.ConsumerSession; //导入依赖的package包/类
protected abstract ConsumerSession delegate();