pub fn open_disk_ordered_cursor_multi<'env>(
databases: &'env [&'env Database],
config: DiskOrderedCursorConfig,
) -> Result<DiskOrderedCursor<'env>, NoxuError>Expand description
Opens a disk-ordered cursor that scans entries from any of the given databases.
All databases must belong to the same crate::Environment. The cursor
holds a borrow of the slice for its entire lifetime, which prevents any of
the databases from being closed mid-scan.
ยงErrors
NoxuError::IllegalArgumentifdatabasesis empty or contains handles from different environments.NoxuError::DatabaseClosedif any of the databases has been closed.NoxuError::IoErrorif the producer thread cannot be spawned.