Skip to content

Commit

Permalink
docs: add getting help section to README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
tqwewe authored Oct 1, 2024
1 parent b4f14c0 commit 9e86c0e
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ Kameo is a Rust library to build fault-tolerant async actors in Rust.

## Feature highlights

* Async Rust: tokio task per actor
* Supervision: link actors together
* Remote messaging: message actors between nodes
* Panic safe: gracefully handled panics
* Back pressure: supports bounded & unbounded mpsc messaging
* **Async Rust**: tokio task per actor
* **Supervision**: link actors together
* **Remote messaging**: message actors between nodes
* **Panic safe**: gracefully handled panics
* **Back pressure**: supports bounded & unbounded mpsc messaging


## Reasons to use Kameo
Expand Down Expand Up @@ -71,6 +71,11 @@ let count = actor_ref.ask(Inc { amount: 42 }).send().await?;
assert_eq!(count, 42);
```

## Getting Help

The kameo book provides a great overview of core concepts in kameo.
If you'd like to reach out, feel free to open an issue or discussion, or join the discord server – [https://discord.gg/GMX4DV9fbk](https://discord.gg/GMX4DV9fbk).

## Contributing

Contributions are welcome! Feel free to submit pull requests, create issues, or suggest improvements.
Expand Down

0 comments on commit 9e86c0e

Please sign in to comment.