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


Java IPluginOutDataPacketService类代码示例

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


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

示例1: setPluginOutDataPacketService

import org.opendaylight.controller.sal.packet.IPluginOutDataPacketService; //导入依赖的package包/类
void setPluginOutDataPacketService(Map<String, Object> props,
        IPluginOutDataPacketService s) {
    if (props == null) {
        logger.error("Didn't receive the service properties");
        return;
    }
    String containerName = (String) props.get("containerName");
    if (containerName == null) {
        logger.error("containerName not supplied");
        return;
    }
    if (this.pluginOutDataPacketServices != null) {
        // It's expected only one SAL per container as long as the
        // replication is done in the SAL implementation toward
        // the different APPS
        this.pluginOutDataPacketServices.put(containerName, s);
        logger.debug("New outService for container: {}", containerName);
    }
}
 
开发者ID:lbchen,项目名称:ODL,代码行数:20,代码来源:DataPacketMuxDemux.java

示例2: unsetPluginOutDataPacketService

import org.opendaylight.controller.sal.packet.IPluginOutDataPacketService; //导入依赖的package包/类
void unsetPluginOutDataPacketService(Map<String, Object> props,
        IPluginOutDataPacketService s) {
    if (props == null) {
        logger.error("Didn't receive the service properties");
        return;
    }
    String containerName = (String) props.get("containerName");
    if (containerName == null) {
        logger.error("containerName not supplied");
        return;
    }
    if (this.pluginOutDataPacketServices != null) {
        this.pluginOutDataPacketServices.remove(containerName);
        logger.debug("Removed outService for container: {}", containerName);
    }
}
 
开发者ID:lbchen,项目名称:ODL,代码行数:17,代码来源:DataPacketMuxDemux.java

示例3: configureInstance

import org.opendaylight.controller.sal.packet.IPluginOutDataPacketService; //导入依赖的package包/类
/**
 * Function that is called when configuration of the dependencies
 * is required.
 *
 * @param c dependency manager Component object, used for
 * configuring the dependencies exported and imported
 * @param imp Implementation class that is being configured,
 * needed as long as the same routine can configure multiple
 * implementations
 * @param containerName The containerName being configured, this allow
 * also optional per-container different behavior if needed, usually
 * should not be the case though.
 */
public void configureInstance(Component c, Object imp, String containerName) {
    if (imp.equals(QoSHandler.class)) {
        // export the service
        Dictionary<String, String> props = new Hashtable<String, String>();
        props.put("salListenerName", "qoshandler");
        c.setInterface(new String[] { IPluginOutDataPacketService.class.getName(),
                IListenDataPacket.class.getName() }, props);

        c.add(createContainerServiceDependency(containerName).setService(
                ISwitchManager.class).setCallbacks("setSwitchManager",
                "unsetSwitchManager").setRequired(true));

        c.add(createContainerServiceDependency(containerName).setService(
                ITopologyManager.class).setCallbacks("setTopologyManager",
                "unsetTopologyMananger").setRequired(true));

       c.add(createContainerServiceDependency(containerName).setService(
                IDataPacketService.class).setCallbacks(
                "setDataPacketService", "unsetDataPacketService")
                .setRequired(true));

        // the Host Listener is optional
        c.add(createContainerServiceDependency(containerName).setService(
                IfHostListener.class).setCallbacks("setHostListener",
                "unsetHostListener").setRequired(false));

        // the IfIptoHost is a required dependency
        c.add(createContainerServiceDependency(containerName).setService(
                IfIptoHost.class).setCallbacks("setHostTracker",
                "unsetHostTracker").setRequired(true));
    }
}
 
开发者ID:lbchen,项目名称:ODL,代码行数:46,代码来源:Activator.java


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