tycho-control 0.3.7

Node control server.
Documentation
1
2
3
4
5
6
7
8
9
10
11
use tycho_types::models::GlobalVersion;

#[async_trait::async_trait]
pub trait Collator: Send + Sync + 'static {
    // TODO: Add methods
    //   - restart collator
    //   - clear collator cache
    //   - get running sessions

    async fn get_global_version(&self) -> GlobalVersion;
}