unifier-cli 0.3.0

Filesystem postbox for inter-process communication via a Unix tree
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! On-disk layout constants.

pub const CRON: &str = "cron";
pub const MAILBOX: &str = "mailbox";
pub const KEYS: &str = "keys";
pub const CHROOTS: &str = "chroots";
pub const TICKS: &str = "ticks";
pub const EVENTS: &str = "events";

/// File under [`TICKS`] recording the latest committed tick number.
pub const TICK_CURRENT: &str = "current";

/// Separator between cron schedule fields in directory names (minute_hour_dom_mon_dow).
pub const CRON_FIELD_SEP: char = '_';