Struct tikv::server::gc_worker::applied_lock_collector::AppliedLockCollector [−][src]
Fields
worker: Mutex<Worker>
scheduler: Scheduler<LockCollectorTask>
concurrency_manager: ConcurrencyManager
Implementations
impl AppliedLockCollector
[src][−]
pub fn new(
coprocessor_host: &mut CoprocessorHost<RocksEngine>,
concurrency_manager: ConcurrencyManager
) -> Result<Self>
[src]
coprocessor_host: &mut CoprocessorHost<RocksEngine>,
concurrency_manager: ConcurrencyManager
) -> Result<Self>
pub fn stop(&self)
[src]
pub fn start_collecting(
&self,
max_ts: TimeStamp,
callback: Box<dyn FnOnce(Result<()>) + Send>
) -> Result<()>
[src][−]
&self,
max_ts: TimeStamp,
callback: Box<dyn FnOnce(Result<()>) + Send>
) -> Result<()>
Starts collecting applied locks whose start_ts
<= max_ts
. Only one max_ts
is valid
at one time.
pub fn get_collected_locks(
&self,
max_ts: TimeStamp,
callback: Box<dyn FnOnce(Result<(Vec<LockInfo>, bool)>) + Send>
) -> Result<()>
[src][−]
&self,
max_ts: TimeStamp,
callback: Box<dyn FnOnce(Result<(Vec<LockInfo>, bool)>) + Send>
) -> Result<()>
Get the collected locks after start_collecting
. Only valid when max_ts
matches the
max_ts
provided to start_collecting
.
Collects at most MAX_COLLECT_SIZE
locks. If there are (even potentially) more locks than
MAX_COLLECT_SIZE
or any error happens, the flag is_clean
will be unset, which represents
AppliedLockCollector
cannot collect all locks.
pub fn stop_collecting(
&self,
max_ts: TimeStamp,
callback: Box<dyn FnOnce(Result<()>) + Send>
) -> Result<()>
[src][−]
&self,
max_ts: TimeStamp,
callback: Box<dyn FnOnce(Result<()>) + Send>
) -> Result<()>
Stop collecting locks. Only valid when max_ts
matches the max_ts
provided to
start_collecting
.
Trait Implementations
impl Drop for AppliedLockCollector
[src][+]
Auto Trait Implementations
impl !RefUnwindSafe for AppliedLockCollector
impl Send for AppliedLockCollector
impl Sync for AppliedLockCollector
impl Unpin for AppliedLockCollector
impl !UnwindSafe for AppliedLockCollector
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src][+]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<V, W> ConvertFrom<W> for V where
W: ConvertTo<V>,
[src][+]
W: ConvertTo<V>,
impl<T> From<T> for T
[src][+]
impl<T> Instrument for T
[src][+]
impl<T, U> Into<U> for T where
U: From<T>,
[src][+]
U: From<T>,
impl<T> Pointable for T
[src][+]
impl<T> Pointable for T
[src][+]
impl<T> Same<T> for T
[src]
type Output = T
Should always be Self
impl<T> Sealed<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src][+]
U: Into<T>,
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src][+]
U: TryFrom<T>,
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
[src][+]
V: MultiLane<T>,