本文整理汇总了Java中org.opendaylight.yang.gen.v1.urn.opendaylight.flow.service.rev130819.SalFlowService类的典型用法代码示例。如果您正苦于以下问题:Java SalFlowService类的具体用法?Java SalFlowService怎么用?Java SalFlowService使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
SalFlowService类属于org.opendaylight.yang.gen.v1.urn.opendaylight.flow.service.rev130819包,在下文中一共展示了SalFlowService类的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: onSessionInitiated
import org.opendaylight.yang.gen.v1.urn.opendaylight.flow.service.rev130819.SalFlowService; //导入依赖的package包/类
@Override
public void onSessionInitiated(ProviderContext session) {
LOG.info("ExampleProvider Session Initiated");
DataBroker db = session.getSALService(DataBroker.class);
exampleService = session.addRpcImplementation(OdlexampleService.class, new ExampleImpl(db));
ApplicationRegistryUtils.getInstance().setDb(db);
ApplicationRegistryUtils.getInstance().initializeDataTree();
SalFlowService salFlowService = session.getRpcService(SalFlowService.class);
SwitchConfigurator.getInstance().setDb(db);
SwitchConfigurator.getInstance().setSalFlowService(salFlowService);
NetworkGraphImpl.getInstance().setDb(db);
NetworkGraphImpl.getInstance().init();
}
示例2: NaptEventHandler
import org.opendaylight.yang.gen.v1.urn.opendaylight.flow.service.rev130819.SalFlowService; //导入依赖的package包/类
@Inject
public NaptEventHandler(final DataBroker dataBroker, final IMdsalApiManager mdsalManager,
final NaptManager naptManager,
final PacketProcessingService pktService,
final OdlInterfaceRpcService interfaceManagerRpc,
final IInterfaceManager interfaceManager,
final IElanService elanManager,
final IdManagerService idManager,
final SalFlowService salFlowServiceRpc) {
this.dataBroker = dataBroker;
this.mdsalManager = mdsalManager;
this.naptManager = naptManager;
this.pktService = pktService;
this.interfaceManagerRpc = interfaceManagerRpc;
this.interfaceManager = interfaceManager;
this.elanManager = elanManager;
this.idManager = idManager;
this.salFlowServiceRpc = salFlowServiceRpc;
}
示例3: NegotiatorProvider
import org.opendaylight.yang.gen.v1.urn.opendaylight.flow.service.rev130819.SalFlowService; //导入依赖的package包/类
public NegotiatorProvider(DataBroker dataBroker, RpcProviderRegistry rpcProviderRegistry,
NotificationProviderService notificationService) {
this.dataBroker = dataBroker;
this.salFlowService = rpcProviderRegistry.getRpcService(SalFlowService.class);
this.notificationService = notificationService;
this.negotiatorService = rpcProviderRegistry.addRpcImplementation(NegotiatorService.class,
new QoSNegotiatorImpl(salFlowService, dataBroker));
}
示例4: ReferenceProvider
import org.opendaylight.yang.gen.v1.urn.opendaylight.flow.service.rev130819.SalFlowService; //导入依赖的package包/类
public ReferenceProvider(DataBroker dataBroker, RpcProviderRegistry rpcProviderRegistry) {
this.dataBroker = dataBroker;
this.salFlowService = rpcProviderRegistry.getRpcService(SalFlowService.class);
this.referenceService = rpcProviderRegistry.addRpcImplementation(ReferenceService.class,
new ReferenceMonitorImpl(dataBroker));
ApplicationRegistryUtils.getInstance().setDb(dataBroker);
ApplicationRegistryUtils.getInstance().initializeDataTree();
}
示例5: TutorialTapProvider
import org.opendaylight.yang.gen.v1.urn.opendaylight.flow.service.rev130819.SalFlowService; //导入依赖的package包/类
public TutorialTapProvider(DataBroker dataBroker, NotificationProviderService notificationService, RpcProviderRegistry rpcProviderRegistry) {
//Store the data broker for reading/writing from inventory store
this.dataBroker = dataBroker;
//Object used for flow programming through RPC calls
this.salFlowService = rpcProviderRegistry.getRpcService(SalFlowService.class);
//List used to track notification (both data change and YANG-defined) listener registrations
this.registrations = registerDataChangeListeners();
//Register this object for receiving notifications when there are New switches
registrations.add(notificationService.registerNotificationListener(this));
}
示例6: QoSNegotiatorImpl
import org.opendaylight.yang.gen.v1.urn.opendaylight.flow.service.rev130819.SalFlowService; //导入依赖的package包/类
public QoSNegotiatorImpl(SalFlowService salFlowService, DataBroker db) {
this.salFlowService = salFlowService;
this.db = db;
}
示例7: MonitoringProvider
import org.opendaylight.yang.gen.v1.urn.opendaylight.flow.service.rev130819.SalFlowService; //导入依赖的package包/类
public MonitoringProvider(DataBroker dataBroker, RpcProviderRegistry rpcProviderRegistry,
NotificationProviderService notificationService) {
this.dataBroker = dataBroker;
this.salFlowService = rpcProviderRegistry.getRpcService(SalFlowService.class);
this.notificationService = notificationService;
}