本文整理汇总了Java中org.onosproject.net.Host.id方法的典型用法代码示例。如果您正苦于以下问题:Java Host.id方法的具体用法?Java Host.id怎么用?Java Host.id使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.onosproject.net.Host
的用法示例。
在下文中一共展示了Host.id方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: addOrUpdateHost
import org.onosproject.net.Host; //导入方法依赖的package包/类
void addOrUpdateHost(Host host) {
HostId id = host.id();
UiHost uiHost = uiTopology.findHost(id);
if (uiHost == null) {
uiHost = addNewHost(host);
}
updateHost(uiHost, host);
postEvent(HOST_ADDED_OR_UPDATED, uiHost);
}
示例2: removeHost
import org.onosproject.net.Host; //导入方法依赖的package包/类
void removeHost(Host host) {
HostId id = host.id();
UiHost uiHost = uiTopology.findHost(id);
if (uiHost != null) {
UiLink edgeLink = uiTopology.findLink(uiHost.edgeLinkId());
uiTopology.remove(edgeLink);
uiTopology.remove(uiHost);
postEvent(HOST_REMOVED, uiHost);
} else {
log.warn(E_NO_ELEMENT, "host", id);
}
}
示例3: isIntentRelevantToHosts
import org.onosproject.net.Host; //导入方法依赖的package包/类
private boolean isIntentRelevantToHosts(HostToHostIntent intent, Iterable<Host> hosts) {
for (Host host : hosts) {
HostId id = host.id();
// Bail if intent does not involve this host.
if (!id.equals(intent.one()) && !id.equals(intent.two())) {
return false;
}
}
return true;
}
示例4: edgeLink
import org.onosproject.net.Host; //导入方法依赖的package包/类
private EdgeLink edgeLink(Host host, boolean ingress) {
return new DefaultEdgeLink(PID, new ConnectPoint(host.id(), portNumber(0)),
host.location(), ingress);
}