Crates.io | kabuki |
lib.rs | kabuki |
version | 0.0.2 |
source | src |
created_at | 2016-12-26 21:25:31.671658 |
updated_at | 2024-04-19 19:43:49.832533 |
description | Name reservation |
homepage | |
repository | |
max_upload_size | |
id | 7789 |
size | 31,728 |
Actor library built on top of the Tokio platform.
Kabuki provides a simple way to structure concurrent applications built for the Tokio / Futures platform. It is based on the actor model. An actor is a small unit of computation that is used to manage state and resources. It receives messages from other actors and performs some kind of action based on that input. This way, instead of having state and resources accessed concurrently, only a single thread access it and concurrent access is handled through message passing.
Tokio and Futures provide a lightweight task primitive. However, it leaves the details of managing concurrency up to the developer.
First, add this to your Cargo.toml
:
[dependencies]
kabuki = { git = "https://github.com/carllerche/kabuki" }
Next, add this to your crate:
extern crate kabuki;
And then, use kabuki!
kabuki
is primarily distributed under the terms of both the MIT license and
the Apache License (Version 2.0), with portions covered by various BSD-like
licenses.
See LICENSE-APACHE, and LICENSE-MIT for details.