当前位置: 首页>>代码示例>>Java>>正文


Java ConsumerContext类代码示例

本文整理汇总了Java中org.opendaylight.controller.sal.binding.api.BindingAwareBroker.ConsumerContext的典型用法代码示例。如果您正苦于以下问题:Java ConsumerContext类的具体用法?Java ConsumerContext怎么用?Java ConsumerContext使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


ConsumerContext类属于org.opendaylight.controller.sal.binding.api.BindingAwareBroker包,在下文中一共展示了ConsumerContext类的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: init

import org.opendaylight.controller.sal.binding.api.BindingAwareBroker.ConsumerContext; //导入依赖的package包/类
/**
 * Starts the bgp router
 */
@Before
public void init() throws InterruptedException, ExecutionException {
	setupBgpRouter();
	bgpRouter.onSessionInitialized(mock(ConsumerContext.class));
	setupBgpSpeakers();
	bgpRouter.start();
}
 
开发者ID:onfsdn,项目名称:atrium-odl,代码行数:11,代码来源:BgprouterTest.java

示例2: onSessionInitialized

import org.opendaylight.controller.sal.binding.api.BindingAwareBroker.ConsumerContext; //导入依赖的package包/类
@Override
public void onSessionInitialized(ConsumerContext session) {
    NotificationService notificationService = session
            .getSALService(NotificationService.class);
    registration = notificationService
            .registerNotificationListener(new HelloListenerImpl());
}
 
开发者ID:davidkbainbridge,项目名称:odl-sample-service,代码行数:8,代码来源:HelloConsumer.java

示例3: createConsumerContext

import org.opendaylight.controller.sal.binding.api.BindingAwareBroker.ConsumerContext; //导入依赖的package包/类
public static ConsumerContext createConsumerContext(BindingAwareConsumer consumer,
        ClassToInstanceMap<BindingAwareService> serviceProvider) {
    checkNotNull(consumer,"Consumer should not be null");
    checkNotNull(serviceProvider,"Service map should not be null");
    return new SingleConsumerContextImpl(serviceProvider);
}
 
开发者ID:hashsdn,项目名称:hashsdn-controller,代码行数:7,代码来源:BindingContextUtils.java

示例4: createConsumerContextAndInitialize

import org.opendaylight.controller.sal.binding.api.BindingAwareBroker.ConsumerContext; //导入依赖的package包/类
public static ConsumerContext createConsumerContextAndInitialize(BindingAwareConsumer consumer,
        ClassToInstanceMap<BindingAwareService> serviceProvider) {
    ConsumerContext context = createConsumerContext(consumer, serviceProvider);
    consumer.onSessionInitialized(context);
    return context;
}
 
开发者ID:hashsdn,项目名称:hashsdn-controller,代码行数:7,代码来源:BindingContextUtils.java

示例5: onSessionInitialized

import org.opendaylight.controller.sal.binding.api.BindingAwareBroker.ConsumerContext; //导入依赖的package包/类
@Override
public void onSessionInitialized(ConsumerContext arg0) {
	LOG.info("Atrium Cli Started");
}
 
开发者ID:onfsdn,项目名称:atrium-odl,代码行数:5,代码来源:AtriumCli.java

示例6: onSessionInitialized

import org.opendaylight.controller.sal.binding.api.BindingAwareBroker.ConsumerContext; //导入依赖的package包/类
@Override
public void onSessionInitialized(ConsumerContext context) {
    LOG.info("TopologyUpdateProvider onSessionInitiated");
    notificationService.registerNotificationListener(producer);
}
 
开发者ID:fp7-netide,项目名称:Engine,代码行数:6,代码来源:TopologyUpdateConsumer.java

示例7: onSessionInitialized

import org.opendaylight.controller.sal.binding.api.BindingAwareBroker.ConsumerContext; //导入依赖的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 BindingAwareBroker#registerConsumer(BindingAwareConsumer)}
 *
 * @param session
 *            Unique session between consumer and SAL.
 */
void onSessionInitialized(ConsumerContext session);
 
开发者ID:hashsdn,项目名称:hashsdn-controller,代码行数:14,代码来源:BindingAwareConsumer.java

示例8: onSessionInitialized

import org.opendaylight.controller.sal.binding.api.BindingAwareBroker.ConsumerContext; //导入依赖的package包/类
/**
 * Call back function which gets invoked on feature module initialization
 *
 * @param ctxt
 *
 *
 */
@Override
public void onSessionInitialized(ConsumerContext ctxt) {
	LOG.info("BgprouterProvider Session Initiated");
}
 
开发者ID:onfsdn,项目名称:atrium-odl,代码行数:12,代码来源:Bgprouter.java


注:本文中的org.opendaylight.controller.sal.binding.api.BindingAwareBroker.ConsumerContext类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。