cerk 0.2.11

CERK is an open source CloudEvents Router written in Rust with a MicroKernel architecture.
1
2
3
4
5
6
use crate::kernel::{KernelFn, StartOptions};

/// Function signature for the Scheduler.
pub type ScheduleFn = fn(StartOptions, KernelFn);
/// Function signature for the Scheduler as reference
pub type ScheduleFnRefStatic = &'static fn(StartOptions, KernelFn);