Uses of Interface
org.apache.datasketches.memory.MapHandle
-
-
Uses of MapHandle in org.apache.datasketches.memory
Methods in org.apache.datasketches.memory that return MapHandle Modifier and Type Method Description static MapHandle
Memory. map(File file)
Maps the entire given file into native-ordered Memory for read operations Calling this method is equivalent to callingmap(file, 0, file.length(), ByteOrder.nativeOrder())
.static MapHandle
Memory. map(File file, long fileOffsetBytes, long capacityBytes, ByteOrder byteOrder)
Maps the specified portion of the given file into Memory for read operations.
-