Reactive Programming in Swift
-
Updated
Jun 14, 2020 - Swift
Reactive Programming in Swift
We should create a PR to https://github.com/ReactiveX/reactivex.github.io in order to document how RxGo fits in the existing ReactiveX ecosystem and to add RxGo documentation to existing operators.
We need to create our own docker image with git, sphinx-build and gradle to create the documentation and commit it into github.
The default docker image doesn't accept the html tags.
On the Gitter channel -
Peter Majchrak @petoknm Jul 09 09:54
i was missing a template parameter for create
auto ints = rxcpp::observable<>::create<int>( [](rxcpp::subscriber<int> s){ s.on_next(1); s.on_next(2); s.on_completed(); });
please update http://reactive-extensions.github.io/RxCpp/ to reflect that. thanks
Some of the benchmarks don't have the correct scala doc, fixing those.
A unified fingerprint library for android.
A collection of awesome RxJS resources
Samples App using the Reactive Extensions and Reactive UI
The README shows the extension method "Dialog.toObservable()" which does not exist in 2.2.2 (at least I couldn't find it).
But I could find toMaybe().
Maybe update the doc?
RetryWhen.retryWhenInstanceOf has vararg parameter with generic type, this produces Java warning in code that is using this method. https://docs.oracle.com/javase/tutorial/java/generics/nonReifiableVarargsType.html#vulnerabilities.
It should be enough to add @SafeVarargs to RetryWhen.retryWhenInstanceOf method
Also possible workaround is to use retryIf(e -> e instanceOf X) instead
A repository for sharing all the resources available on Reactive Programming and Reactive Systems
Reactive extension for the Kingfisher image downloading and caching library
A testing server for a speech to text service based on mozilla deepspeech
A repository to capture simple code experiments
Cross-platform demo file manager for cloud storages. Built with ReactiveUI, DynamicData, Akavache, Avalonia, Universal Windows Platform, Xamarin Forms and WPF, runs on Windows, Linux, Mac OS and Android.
https://github.com/RxJSInAction/rxjs-in-action/blob/master/examples/4/7/4_7.js
does not correspond to the marble diagram (p.99, Figure 4.8) of 4.3.1 Propagation. Due to the use of the of static operator there is only a single event containing an array of five elements - not five events as depicted in the marble diagram. For that the from static operator has to be used:
``
Somebody in the class had a suggestion to package up the examples in a Jupyter notebook. This sounds like a helpful addition.
To use Fable Reaction with Elmish you need to call the Program.withStream with your reactive query. The query function takes an IAsyncObservable<'msg> and returns a possibibly transformed IAsyncObservable<'msg>.
This doesn't fit to the following code example in Getting Started
Example of Features, Reactive and Pure functional programing in Scala
RxJava binding APIs for Android's animations
Add a description, image, and links to the reactivex topic page so that developers can more easily learn about it.
To associate your repository with the reactivex topic, visit your repo's landing page and select "manage topics."
Hi! I am just getting into ReactiveX but am really enjoying it so far. With 3.0 coming out a lot of the old code snippets are out of data and although it's not too difficult to transpose, a lot of the old examples don't cover things like creating Observable from scratch etc.
Are there any plans to work on some training material? If so, I would be happy to send across a list of things that would