當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。