Struct raftstore::store::fsm::apply::GenSnapTask[][src]

pub struct GenSnapTask {
    pub(crate) region_id: u64,
    pub index: Arc<AtomicU64>,
    pub canceled: Arc<AtomicBool>,
    snap_notifier: SyncSender<RaftSnapshot>,
    for_balance: bool,
}

Fields

region_id: u64index: Arc<AtomicU64>canceled: Arc<AtomicBool>snap_notifier: SyncSender<RaftSnapshot>for_balance: bool

Implementations

impl GenSnapTask[src]

pub fn new(
    region_id: u64,
    index: Arc<AtomicU64>,
    canceled: Arc<AtomicBool>,
    snap_notifier: SyncSender<RaftSnapshot>
) -> GenSnapTask
[src]

pub fn set_for_balance(&mut self)[src]

pub fn generate_and_schedule_snapshot<EK>(
    self,
    kv_snap: EK::Snapshot,
    last_applied_index_term: u64,
    last_applied_state: RaftApplyState,
    region_sched: &Scheduler<RegionTask<EK::Snapshot>>
) -> Result<()> where
    EK: KvEngine
[src]

Trait Implementations

impl Debug for GenSnapTask[src]

Auto Trait Implementations

impl RefUnwindSafe for GenSnapTask

impl Send for GenSnapTask

impl Sync for GenSnapTask

impl Unpin for GenSnapTask

impl UnwindSafe for GenSnapTask

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<V, W> ConvertFrom<W> for V where
    W: ConvertTo<V>, 
[src]

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]

impl<T> Pointable for T[src]

type Init = T

The type for initializers.

impl<T> Pointable for T[src]

type Init = T

The type for initializers.

impl<T> Same<T> for T[src]

type Output = T

Should always be Self

impl<T> Sealed<T> for T where
    T: ?Sized
[src]

impl<T> SendSyncUnwindSafe for T where
    T: Send + Sync + UnwindSafe + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]