serviceless 0.6.1

An simple actor model in rust, like actix
Documentation
1
2
3
4
5
6
7
8
use crate::{
    runtime_impl::tokio::TokioRuntime, RuntimedReplyHandle, RuntimedTopicAllHandle,
    RuntimedTopicEndpoint,
};

pub type ReplyHandle<M> = RuntimedReplyHandle<M, TokioRuntime>;
pub type TopicAllHandle<T> = RuntimedTopicAllHandle<T, TokioRuntime>;
pub type TopicEndpoint<T> = RuntimedTopicEndpoint<T, TokioRuntime>;