[][src]Crate meio

meio - lightweight async actor framework for Rust. The main benefit of this framework is that gives you tiny extension over tokio with full control.

It's designed for professional applications where you can't have strong restrictions and have keep flexibility.

Also this crate has zero-cost runtime. It just calls async method of your type.

Modules

handlers

This module contains the Envelope that allow to call methods of actors related to a sepcific imcoming message.

ids

Contains typed and generic id types.

linkage

Contains modules of different ways to communicate with Actors.

prelude

Meio prelude module.

signal

Module contains stream to connect signals to actors.

system

This module contains System actor.

task

This module contains useful tasks that you can attach to an Actor.