Giter VIP home page Giter VIP logo

rxrs's Introduction

rxrs Build Status License

Reactive Extensions Library for Rust.

This is a work in progress library. Do not use it for production environments.

Observable

Create

For creating new Observable instances, the library provides a number of creation operators:

  • of: creates a finite number of observables with a defined value:

    let observable = of(&[1, 2, 3]);
  • interval: creates an infinite observable that emits sequential numbers every specified interval of time:

    let observable = interval(1000); // every 1000 ms (1s)

rxrs's People

Contributors

aleics avatar

Stargazers

 avatar

Watchers

 avatar  avatar

rxrs's Issues

Subscription on a piped Observable does not work

When using multiple Observable operators (e.g. map, filter), it's not possible to subscribe to the resulted Observable, if this one is used by another operator:

#[test]
fn successive_subscriptions() {
   let data = [1, 2, 3];

    let multiplied = of(&data)
        .map(|item| item * 2);

    assert!(values_sent(&multiplied, &[2, 4, 6]));
    assert!(is_completed(&multiplied));

    let result = multiplied.map(|item| item / 2);
    assert!(values_sent(&result, &data));
    assert!(is_completed(&result));
}

Not possible to use multiple operators to same observable

Since Observable does not implement the copy trait, it's currently not possible to use multiple operators.

Example:

#[test]
fn multiple_operators_same_observable() {
    let observable = of(&[1, 2 ,3]);

    let even = observable.filter(|item| item % 2 == 0);
    let odd = observable.filter(|item| item % 2 == 1);

    assert!(values_sent(&even, &[2]));
    assert!(is_completed(&even));
    assert!(values_sent(&odd, &[1, 3]));
    assert!(is_completed(&odd));
}

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.