Enum BackgroundErrorReason
- Namespace
- RocksDbNet
- Assembly
- RocksDb.Net.dll
What RocksDb was doing when a background error occurred, mapped from
rocksdb::BackgroundErrorReason in listener.h.
public enum BackgroundErrorReason
Fields
AsyncFileOpen = 7Opening a file asynchronously.
Compaction = 1Running a compaction.
Flush = 0Flushing a memtable.
FlushNoWal = 5Flushing with the write-ahead log disabled.
ManifestWrite = 4Writing the manifest.
ManifestWriteNoWal = 6Writing the manifest with the write-ahead log disabled.
MemTable = 3Writing to the memtable.
WriteCallback = 2Invoking a write callback.
Remarks
The values are positional in the native header and must match it exactly.