mocra-core 0.4.1

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
9
10
11
12
13
14
pub mod backend;
pub mod distributed;
pub mod leader;
#[cfg(feature = "cluster-embedded")]
pub mod raft_backend;

pub use backend::{ClusterStatusView, CoordinationBackend};
pub use distributed::{DistributedSync, SyncAble, SyncService};
pub use leader::LeaderElector;
#[cfg(feature = "cluster-embedded")]
pub use raft_backend::RaftCoordinationBackend;

#[cfg(test)]
mod tests;