pub trait ReaderTxnTracker: Send + Sync {
// Required method
fn wait_for_pre_commit_readers(&self);
}Available on crate feature
provider only.Expand description
Object-safe adapter for reader-txn tracking during unwind.
Required Methods§
Sourcefn wait_for_pre_commit_readers(&self)
fn wait_for_pre_commit_readers(&self)
Waits until all readers older than the latest committed txnid have drained.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".