pacifica-rs 1.0.0

rust implementation of PacificA: Replication in Log-Based Distributed Storage Systems
use crate::core::fsm::CommitResultBatch;
use crate::core::ResultSender;
use crate::error::{Fatal, LifeCycleError};
use crate::TypeConfig;

pub(crate) enum NotificationMsg<C>
where
    C: TypeConfig,
{
    /// send commit result for user
    SendCommitResult { result: CommitResultBatch<C> },

    /// replica state of meta changed
    CoreStateChange,

    CoreStateChangeAndWait {
        callback: ResultSender<C, (), LifeCycleError>
    },

    /// A higher term is received,
    /// Show that the current replica group conf is expired
    HigherTerm {
        term: usize,
    },
    /// A higher version is received
    /// Show that the current replica group conf is expired
    HigherVersion {
        version: usize,
    },

    ///
    ReportFatal {
        fatal: Fatal
    }

}