mocra-core 0.4.0

The mocra crawler framework runtime: errors, cache, utilities, domain models, downloader, data-plane queue, coordination, scheduler and engine.
Documentation
1
2
3
4
5
6
7
8
//! Coordination backend re-export.
//!
//! The trait and status type now live in [`crate::common::coordination`] (so `common`'s
//! `State` can hold a coordination handle without a `common → sync` cycle). Backend
//! implementations (Redis, embedded Raft) stay in `sync`. This shim keeps the historical
//! `crate::sync::backend::{CoordinationBackend, ClusterStatusView}` paths working.

pub use crate::common::coordination::{ClusterStatusView, CoordinationBackend};