Uses of Class
java.nio.channels.FileChannel.MapMode
Package
Description
Defines channels, which represent connections to entities that are capable of
performing I/O operations, such as files and sockets; defines selectors, for
multiplexed, non-blocking I/O operations.
Classes to support low-level and efficient foreign memory/function access, directly from Java.
-
Uses of FileChannel.MapMode in java.nio.channels
Modifier and TypeFieldDescriptionstatic final FileChannel.MapMode
FileChannel.MapMode.PRIVATE
Mode for a private (copy-on-write) mapping.static final FileChannel.MapMode
FileChannel.MapMode.READ_ONLY
Mode for a read-only mapping.static final FileChannel.MapMode
FileChannel.MapMode.READ_WRITE
Mode for a read/write mapping.Modifier and TypeMethodDescriptionabstract MappedByteBuffer
FileChannel.map
(FileChannel.MapMode mode, long position, long size) Maps a region of this channel's file directly into memory. -
Uses of FileChannel.MapMode in jdk.incubator.foreign
Modifier and TypeMethodDescriptionstatic MemorySegment
MemorySegment.mapFile
(Path path, long bytesOffset, long bytesSize, FileChannel.MapMode mapMode, ResourceScope scope) Creates a new mapped memory segment that models a memory-mapped region of a file from a given path. -
Uses of FileChannel.MapMode in jdk.nio.mapmode
Modifier and TypeFieldDescriptionstatic final FileChannel.MapMode
ExtendedMapMode.READ_ONLY_SYNC
File mapping mode for a read-only mapping of a file backed by non-volatile RAM.static final FileChannel.MapMode
ExtendedMapMode.READ_WRITE_SYNC
File mapping mode for a read-write mapping of a file backed by non-volatile RAM.