Package org.neo4j.gds.core.compress
Interface AdjacencyCompressorFactory
-
public interface AdjacencyCompressorFactory
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AdjacencyListsWithPropertiesbuild()AdjacencyCompressorcreateCompressor()voidinit()Prepares the compressor for flushing, for example by initializing data structures as they are needed.java.util.concurrent.atomic.LongAdderrelationshipCounter()
-
-
-
Method Detail
-
init
void init()
Prepares the compressor for flushing, for example by initializing data structures as they are needed.
-
createCompressor
AdjacencyCompressor createCompressor()
- Returns:
- a copy of this blueprint that can be used concurrently with other copies to compress data.
-
relationshipCounter
java.util.concurrent.atomic.LongAdder relationshipCounter()
-
build
AdjacencyListsWithProperties build()
- Returns:
- the final adjacency list, together with any number of properties, if any.
-
-