another-rxrust

Why not rxRust?

I think rxRust is a great Rust implementation of ReactiveX. However, when rxRust combines observable in a slightly complicated way, rust peculiar difficulties are exposed.

Therefore, I implemented ReactiveX in a different way than rxRust, and created another-rxrust that can be easily described even if the following observable is combined in a complicated manner.

This implementation is not a panacea. Rust sacrifices memory efficiency, speed, and much more. If you want performance, I think you should use rxRust.

```rust use crate::prelude::*; use anyhow::anyhow; use std::{thread, time};

fn main() { fn ob() -> Observable<'static, i32> { Observable::create(|s| { s.next(100); s.next(200); s.complete(); }) }

observables::fromiter(1..10) .observeon(schedulers::newthreadscheduler()) .flatmap(|x| match x { 1 => observables::empty(), 2 => observables::just(x), 3 => ob().map(move |y| (y + x)), 4 => observables::error(RxError::new(anyhow!("err"))), _ => observables::never(), }) .map(|x| format!("{}", x)) .onerrorresumenext(|e| ob().map(move |x| format!("resume {:} {}", e.error, x))) .subscribe( |x| { println!("next {}", x); }, |e| { println!("error {:}", e.error); }, || { println!("complete"); }, );

thread::sleep(time::Duration::from_millis(600)); }

// next 2 // next 103 // next 203 // next resume err 100 // next resume err 200 // complete ```

Implementation policy

Based on the problems of rxRust, another-rxrust has the following implementation policy.

Usage

default

toml [dependencies] another-rxrust = {}

use anyhow::Error

toml [dependencies] another-rxrust = {features=["anyhow"]}

Implementation status

Quoted from ReactiveX.

Creating Observables

Operators that originate new Observables.

Transforming Observables

Operators that transform items that are emitted by an Observable.

Filtering Observables

Operators that selectively emit items from a source Observable.

Combining Observables

Operators that work with multiple source Observables to create a single Observable

Error Handling Operators

Operators that help to recover from error notifications from an Observable

Observable Utility Operators

A toolbox of useful Operators for working with Observables

Conditional and Boolean Operators

Operators that evaluate one or more Observables or items emitted by Observables

Mathematical and Aggregate Operators

Operators that operate on the entire sequence of items emitted by an Observable

Connectable Observable Operators

Specialty Observables that have more precisely-controlled subscription dynamics

Subjects

Schedulers

Others