本文整理汇总了Java中org.opendaylight.controller.connectionmanager.IConnectionManager类的典型用法代码示例。如果您正苦于以下问题:Java IConnectionManager类的具体用法?Java IConnectionManager怎么用?Java IConnectionManager使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
IConnectionManager类属于org.opendaylight.controller.connectionmanager包,在下文中一共展示了IConnectionManager类的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: configureGlobalInstance
import org.opendaylight.controller.connectionmanager.IConnectionManager; //导入依赖的package包/类
/**
* Configure the dependency for a given instance Global
*
* @param c Component assigned for this instance, this will be
* what will be used for configuration
* @param imp implementation to be configured
* @param containerName container on which the configuration happens
*/
protected void configureGlobalInstance(Component c, Object imp) {
if (imp.equals(ConnectionManager.class)) {
Dictionary<String, Object> props = new Hashtable<String, Object>();
Set<String> propSet = new HashSet<String>();
propSet.add("connectionmanager.nodeconnections");
props.put("cachenames", propSet);
props.put("scope", "Global");
// export the service
c.setInterface(new String[] { IConnectionManager.class.getName(),
IConnectionListener.class.getName(),
ICoordinatorChangeAware.class.getName(),
IListenInventoryUpdates.class.getName(),
ICacheUpdateAware.class.getName()},
props);
c.add(createServiceDependency()
.setService(IClusterGlobalServices.class)
.setCallbacks("setClusterServices", "unsetClusterServices")
.setRequired(true));
c.add(createServiceDependency().setService(IConnectionService.class)
.setCallbacks("setConnectionService", "unsetConnectionService")
.setRequired(true));
}
}
示例2: getConnectionManager
import org.opendaylight.controller.connectionmanager.IConnectionManager; //导入依赖的package包/类
private IConnectionManager getConnectionManager() {
return (IConnectionManager) ServiceHelper
.getGlobalInstance(IConnectionManager.class, this);
}