Skip to content

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

108 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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)

About

Reactive Streams Library for Rust.

Resources

Stars

Watchers

Forks

Releases

Packages

Contributors

Languages