Package org.neo4j.gds.api
Interface CompositeRelationshipIterator.RelationshipConsumer
-
- Enclosing interface:
- CompositeRelationshipIterator
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public static interface CompositeRelationshipIterator.RelationshipConsumer
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanconsume(long source, long target, double[] properties)This method is called for every relationship of the specified iterator.
-
-
-
Method Detail
-
consume
boolean consume(long source, long target, double[] properties)This method is called for every relationship of the specified iterator. The order of thepropertiesis equivalent to the order of the property key array returned byCompositeRelationshipIterator.propertyKeys(). The provided array forpropertiesmight be reused across different invocations and should not be stored without making a copy.
-
-