Async Object

This crate provides reference-counting wrappers with event support for using objects in asynchronous environment.

The main purpose of the crate is to provide foundation for my experimental GUI library WAG, but it's abstract enough to be used anywhere else.

See more detailed documentation at docs.rs: asyncobject and asyncobject_derive

Example

This code makes wrappers Background and WBackground for BackgroundImpl object. Internally they are just Arc\ and Weak\ plus tooling for access the Rwlock without blocking asyncronous job.

```

[asyncobjectdecl(pub Background, pub WBackground)]

struct BackgroundImpl { color: Color }

[asyncobjectimpl(Background, WBackground)]

impl BackgroundImpl { pub fn setcolor(&mut this, color: Color) { this.color = color } pub fn getcolor(&this) -> Color { this.color } }

impl Background { pub fn new() -> Background { Background::create(BackgroundImpl { color: Color::White }) } } ```

The structures Background and WBackground will have these automatically generated proxy methods:

``` impl Background { pub fn setcolor(...); pub fn getgolor() -> Color; async pub fn asyncsetcolor(...); async pub fn asyncgetcolor(...) -> Color }

impl WBackground { pub fn setcolor(...) -> Option<()>; pub fn getgolor() -> Option; async pub fn asyncsetcolor(...) -> Option<()>; async pub fn asyncgetcolor(...) -> Option } ```

There is also event pub/sub support. For example: ``` enum ButtonEvent { Press, Release }

[asyncobjectwitheventsdecl(pub Button, pub WButton)]

struct ButtonImpl { }

[asyncobjectimpl(Button, WButton)]

impl ButtonImpl { async pub fn asyncpress(&mut self) { self.sendevent(ButtonEvent::Press).await } pub fn press(&mut self) { let _ = self.sendevent(ButtonEvent::Press) } pub fn events(&self) -> EventStream { self.createevent_stream() } } ```

Below is the code which changes background color when button is pressed

``` let pool = ThreadPool::builder().create().unwrap(); let button = Button::new(); let background = Background::new();

pool.spawn({ let events = button.events(); async move { // As soon as button is destroyed stream returns None while let Some(event) = events.next().await { // event has type Event match *event.asref() { ButtonEvent::Pressed => background.setcolor(Color::Red).await, ButtonEvent::Released => background.set_color(Color::White).await, } } } });

```