Package org.neo4j.gds.paths.traverse
Interface ExitPredicate
-
- All Known Implementing Classes:
TargetExitPredicate
public interface ExitPredicate
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classExitPredicate.Result
-
Field Summary
Fields Modifier and Type Field Description static ExitPredicateFOLLOW
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ExitPredicate.Resulttest(long sourceNode, long currentNode, double weightAtSource)called once for each accepted node during traversal
-
-
-
Field Detail
-
FOLLOW
static final ExitPredicate FOLLOW
-
-
Method Detail
-
test
ExitPredicate.Result test(long sourceNode, long currentNode, double weightAtSource)
called once for each accepted node during traversal- Parameters:
sourceNode- the source nodecurrentNode- the current nodeweightAtSource- the total weight that has been collected by the Aggregator during the traversal- Returns:
- a result
-
-