actori_derive 0.5.0

Actor framework for Rust
Documentation
  • Coverage
  • 0%
    0 out of 3 items documented0 out of 2 items with examples
  • Size
  • Source code size: 22.24 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 288.71 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 5s Average build duration of successful builds.
  • all releases: 5s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Homepage
  • Repository
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • 06chaynes

actix-derive Build Status crates.io

Actix is a rust actor framework.


Actix is licensed under the Apache-2.0 license.

Features

  • actix-derive adds support for Rust Custom Derive / Macros 1.1 to actix

Usage

#[macro_use] extern crate actix_derive;

use std::io::Error;

#[derive(Message)]
#[rtype(result="Result<usize, Error>")]
struct Sum(usize, usize);

#[derive(MessageResponse)]
struct Added(usize);

fn main() {}

This code expands into following code:

extern crate actix;
use std::io::Error;
use actix::dev::MessageResponse;
use actix::dev::ResponseChannel;
use actix::Message;

struct Sum(usize, Error);

impl Message for Sum {
    type Result = Result<usize, Error>;
}

struct Added(usize);

impl<A, M> MessageResponse<A, M> for Added
where
  A: Actor,
  M: Message<Result = Added>
{
    fn handle<R: ResponseChannel<M>>(self, _: &mut A::Context, tx: Option<R>) {
        if let Some(tx) = tx {
            tx.send(self);
        }
    }
}

fn main() {}

License

This project is licensed under either of

at your option.