orlando-timers 0.1.0

A virtual actor framework in Rust, inspired by Microsoft Orleans.
Documentation
1
2
3
4
5
6
7
8
9
10
11
mod reminder;
mod reminder_service;
mod reminder_store;
mod sqlite_reminder_store;
mod timer;

pub use reminder::{ReminderRegistration, ReminderTick};
pub use reminder_service::ReminderService;
pub use reminder_store::{InMemoryReminderStore, ReminderError, ReminderStore};
pub use sqlite_reminder_store::SqliteReminderStore;
pub use timer::{TimerHandle, TimerTick, register_timer};