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
This code makes wrappers Background and WBackground for BackgroundImpl object. Internally they are just
Arc\
```
struct BackgroundImpl { color: Color }
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
There is also event pub/sub support. For example: ``` enum ButtonEvent { Press, Release }
struct ButtonImpl { }
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
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
```