Package org.neo4j.gds.core.loading
Interface StoreScanner<Reference>
-
- All Superinterfaces:
java.lang.AutoCloseable
- All Known Implementing Classes:
RelationshipScanCursorBasedScanner
public interface StoreScanner<Reference> extends java.lang.AutoCloseable
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interfaceStoreScanner.Factory<Reference>static interfaceStoreScanner.RecordConsumer<Reference>static interfaceStoreScanner.ScanCursor<Reference>
-
Field Summary
Fields Modifier and Type Field Description static intDEFAULT_PREFETCH_SIZE
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intbufferSize()voidclose()StoreScanner.ScanCursor<Reference>createCursor(org.neo4j.kernel.api.KernelTransaction transaction)longstoreSize(org.neo4j.gds.core.GraphDimensions graphDimensions)
-
-
-
Field Detail
-
DEFAULT_PREFETCH_SIZE
static final int DEFAULT_PREFETCH_SIZE
- See Also:
- Constant Field Values
-
-
Method Detail
-
createCursor
StoreScanner.ScanCursor<Reference> createCursor(org.neo4j.kernel.api.KernelTransaction transaction)
-
storeSize
long storeSize(org.neo4j.gds.core.GraphDimensions graphDimensions)
-
bufferSize
int bufferSize()
-
close
void close()
- Specified by:
closein interfacejava.lang.AutoCloseable
-
-