dbeel 0.1.0

dbeel is a fast and minimal distributed thread-per-core document database.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use kinded::Kinded;

/// Events for notifying that a specific flow in the code has reached.
/// Useful for integration test to never sleep.
#[derive(Kinded)]
#[kinded(derive(Hash))]
pub enum FlowEvent {
    StartTasks,
    DeadNodeRemoved,
    AliveNodeGossip,
    CollectionCreated,
    DoneMigration,
    ItemSetFromShardMessage,
}