rain_server 0.3.0-pre

Distributed computational framework for large-scale task-based pipelines. Server and governor binaries.
1
2
3
4
5
6
7
8
use std::path::PathBuf;

pub enum Readiness {
    /// Ready file is a file that
    /// at is created when a process is ready
    WaitingForReadyFile(PathBuf),
    IsReady,
}