actix 0.13.0

Actor framework for Rust
Documentation
1
2
3
4
5
6
7
8
# Actix Examples

The following examples complement the documentation and can help you understand how to use Actix:

1. [Ping]https://github.com/actix/actix/blob/HEAD/actix/examples/ping.rs - Basic example showing 2 actors playing ping/pong.
2. [Fibonacci]https://github.com/actix/actix/blob/HEAD/actix/examples/fibonacci.rs - Demonstrates how to integrate a synchronous actor on a thread-pool for cpu bound tasks.
3. [Ring]https://github.com/actix/actix/blob/HEAD/actix/examples/ring.rs - Ring benchmark inspired by Programming Erlang: Software for a Concurrent World. Send a M messages round a ring of N actors and benchmark.
4. [Chat]https://github.com/actix/actix/tree/HEAD/actix/examples/chat - More realistic application example of a chat server/client