Uses of Class
org.apache.ignite.configuration.WALMode
-
Packages that use WALMode Package Description org.apache.ignite.configuration Contains configuration-related classes.org.apache.ignite.internal.processors.cache.persistence.wal.filehandle -
-
Uses of WALMode in org.apache.ignite.configuration
Fields in org.apache.ignite.configuration declared as WALMode Modifier and Type Field Description static WALModeDataStorageConfiguration. DFLT_WAL_MODEDefault wal mode.static WALModePersistentStoreConfiguration. DFLT_WAL_MODEDeprecated.Default wal mode.Methods in org.apache.ignite.configuration that return WALMode Modifier and Type Method Description static @Nullable WALModeWALMode. fromOrdinal(int ord)Efficiently gets enumerated value from its ordinal.WALModeDataStorageConfiguration. getWalMode()Property that defines behavior of wal fsync.WALModePersistentStoreConfiguration. getWalMode()Deprecated.Type define behavior wal fsync.static WALModeWALMode. valueOf(String name)Returns the enum constant of this type with the specified name.static WALMode[]WALMode. values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.apache.ignite.configuration with parameters of type WALMode Modifier and Type Method Description DataStorageConfigurationDataStorageConfiguration. setWalMode(WALMode walMode)Sets property that defines behavior of wal fsync.PersistentStoreConfigurationPersistentStoreConfiguration. setWalMode(WALMode walMode)Deprecated. -
Uses of WALMode in org.apache.ignite.internal.processors.cache.persistence.wal.filehandle
Constructors in org.apache.ignite.internal.processors.cache.persistence.wal.filehandle with parameters of type WALMode Constructor Description FileHandleManagerImpl(GridCacheSharedContext cctx, DataStorageMetricsImpl metrics, boolean mmap, RecordSerializer serializer, Supplier<FileWriteHandle> currentHandleSupplier, WALMode mode, int walBufferSize, long maxWalSegmentSize, long fsyncDelay)FsyncFileHandleManagerImpl(GridCacheSharedContext cctx, DataStorageMetricsImpl metrics, RecordSerializer serializer, Supplier<FileWriteHandle> handle, WALMode mode, long maxWalSegmentSize, long fsyncDelay, int tlbSize)
-