Package | Description |
---|---|
org.eclipse.jetty.deploy.graph |
Jetty Deploy : Deployment Graph
|
Modifier and Type | Method and Description |
---|---|
private Path |
Graph.breadthFirst(Node from,
Node destination,
java.util.concurrent.CopyOnWriteArrayList<Path> paths,
java.util.Set<Edge> seen) |
Path |
Path.forkPath() |
Path |
Graph.getPath(Node from,
Node to)
Using BFS (Breadth First Search) return the path from a any arbitrary node to any other.
|
Path |
Graph.getPath(java.lang.String nodeNameOrigin,
java.lang.String nodeNameDest)
Convenience method for
Graph.getPath(Node, Node) |
Modifier and Type | Method and Description |
---|---|
private Path |
Graph.breadthFirst(Node from,
Node destination,
java.util.concurrent.CopyOnWriteArrayList<Path> paths,
java.util.Set<Edge> seen) |