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.
-
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.FileChannel.map
(FileChannel.MapMode mode, long offset, long size, ArenaPREVIEW arena) Preview.Maps a region of this channel's file into a new mapped memory segment, with the given offset, size and arena. -
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.