Package jetbrains.buildServer.util.graph
Interface ReachabilityIndexExt<T>
-
- All Superinterfaces:
ReachabilityIndex<T>
- All Known Implementing Classes:
ReachabilityIndexExtImpl
public interface ReachabilityIndexExt<T> extends ReachabilityIndex<T>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
addEdges(T child, List<T> parents)
Extends index with additional edges from the specified child node to the given parent nodes-
Methods inherited from interface jetbrains.buildServer.util.graph.ReachabilityIndex
createReachablePredicate, isReachable, processReachable
-
-
-
-
Method Detail
-
addEdges
void addEdges(@NotNull T child, @NotNull List<T> parents)
Extends index with additional edges from the specified child node to the given parent nodes- Parameters:
child
- child node of interest, must not be present in the indexparents
- parent nodes of interest, must be present in the index
-
-