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


Java IListenRoutingUpdates类代码示例

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


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

示例1: edgeUpdate

import org.opendaylight.controller.sal.routing.IListenRoutingUpdates; //导入依赖的package包/类
@Override
public void edgeUpdate(List<TopoEdgeUpdate> topoedgeupdateList) {
    boolean callListeners = false;
    for (int i = 0; i < topoedgeupdateList.size(); i++) {
        Edge e = topoedgeupdateList.get(i).getEdge();
        Set<Property> p = topoedgeupdateList.get(i).getProperty();
        UpdateType type = topoedgeupdateList.get(i).getUpdateType();
        if ((edgeUpdate(e, type, p)) && (!callListeners)) {
            callListeners = true;
        }
    }
    if ((callListeners) && (this.routingAware != null)) {
        for (IListenRoutingUpdates ra : this.routingAware) {
            try {
                ra.recalculateDone();
            } catch (Exception ex) {
                log.error("Exception on routingAware listener call", ex);
            }
        }
    }
}
 
开发者ID:lbchen,项目名称:ODL,代码行数:22,代码来源:DijkstraImplementation.java

示例2: configureInstance

import org.opendaylight.controller.sal.routing.IListenRoutingUpdates; //导入依赖的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(DijkstraImplementation.class)) {
        // export the service
        Dictionary<String, String> props = new Hashtable<String, String>();
        props.put("topoListenerName", "routing.Dijkstra");
        c.setInterface(new String[] { ITopologyManagerAware.class.getName(),
                IRouting.class.getName() }, props);

        // Now lets add a service dependency to make sure the
        // provider of service exists
        c.add(createContainerServiceDependency(containerName).setService(
                IListenRoutingUpdates.class).setCallbacks(
                "setListenRoutingUpdates", "unsetListenRoutingUpdates")
                .setRequired(false));

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

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

        c.add(createContainerServiceDependency(containerName).setService(
                IReadService.class).setCallbacks("setReadService",
                "unsetReadService").setRequired(true));
    }
}
 
开发者ID:lbchen,项目名称:ODL,代码行数:42,代码来源:Activator.java

示例3: setListenRoutingUpdates

import org.opendaylight.controller.sal.routing.IListenRoutingUpdates; //导入依赖的package包/类
public void setListenRoutingUpdates(IListenRoutingUpdates i) {
    if (this.routingAware == null) {
        this.routingAware = new HashSet<IListenRoutingUpdates>();
    }
    if (this.routingAware != null) {
        log.debug("Adding routingAware listener: {}", i);
        this.routingAware.add(i);
    }
}
 
开发者ID:lbchen,项目名称:ODL,代码行数:10,代码来源:DijkstraImplementation.java

示例4: unsetListenRoutingUpdates

import org.opendaylight.controller.sal.routing.IListenRoutingUpdates; //导入依赖的package包/类
public void unsetListenRoutingUpdates(IListenRoutingUpdates i) {
    if (this.routingAware == null) {
        return;
    }
    log.debug("Removing routingAware listener");
    this.routingAware.remove(i);
    if (this.routingAware.isEmpty()) {
        // We don't have any listener lets dereference
        this.routingAware = null;
    }
}
 
开发者ID:lbchen,项目名称:ODL,代码行数:12,代码来源:DijkstraImplementation.java

示例5: configureInstance

import org.opendaylight.controller.sal.routing.IListenRoutingUpdates; //导入依赖的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(SimpleForwardingImpl.class)) {
        // export the service
        c.setInterface(new String[] { IInventoryListener.class.getName(),
                IfNewHostNotify.class.getName(),
                IListenRoutingUpdates.class.getName() }, null);

        c.add(createContainerServiceDependency(containerName).setService(
                IClusterContainerServices.class).setCallbacks(
                "setClusterContainerService",
                "unsetClusterContainerService").setRequired(true));

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

        c.add(createContainerServiceDependency(containerName).setService(
                IfIptoHost.class).setCallbacks("setHostTracker",
                "unsetHostTracker").setRequired(false));

        c.add(createContainerServiceDependency(containerName).setService(
                IForwardingRulesManager.class).setCallbacks(
                "setForwardingRulesManager", "unsetForwardingRulesManager")
                .setRequired(false));

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

        c.add(createContainerServiceDependency(containerName).setService(
                IRouting.class).setCallbacks("setRouting", "unsetRouting")
                .setRequired(false));
    }
}
 
开发者ID:lbchen,项目名称:ODL,代码行数:48,代码来源:Activator.java


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