mosaik 0.3.17

A Rust runtime for building self-organizing, leaderless distributed systems.
Documentation
use crate::{
	groups::{ApplyContext, StateMachine, replay::LogReplaySync},
	primitives::UniqueId,
};

/// A no-op state machine that does nothing and can be used for testing or
/// agreeing on who's the leader without any application-level logic.
#[derive(Debug, Default)]
pub struct NoOp;

impl StateMachine for NoOp {
	type Command = ();
	type Query = ();
	type QueryResult = ();
	type StateSync = LogReplaySync<Self>;

	fn signature(&self) -> UniqueId {
		// noop has no configs so we can use a constant signature.
		UniqueId::from("mosaik_noop_state_machine")
	}

	fn apply(&mut self, (): Self::Command, _: &dyn ApplyContext) {}

	fn query(&self, (): Self::Query) -> Self::QueryResult {}

	fn state_sync(&self) -> Self::StateSync {
		LogReplaySync::default()
	}
}