-
Updated
Jul 14, 2020 - Swift
reactivex
Here are 246 public repositories matching this topic...
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
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.
It would be great to have truffle style migrations available in web3j for managing the lifecycle of a smart contract. We already support the reading of Truffle metadata files, so this task would require the generation of th
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.
- https://github.com/monix/monix/blob/master/benchmarks/vnext/src/main/scala/monix/benchmarks/AsyncQueueBenchmark.scala#L41
- https://github.com/monix/monix/blob/master/benchmarks/shared/src/main/scala/monix/benchmarks/CoevalAttemptBenchmark.scala#L38
- https://github.com/monix/monix/blob/master/benchmarks/shared/src/main/
Linq added some awareness of bypass operations for standard operations to speed things up.
They achieve this with the IPartition and the IListProvider interfaces
https://github.com/dotnet/corefx/blob/master/src/System.Linq/src/System/Linq/IPartition.cs
https://github.com/dotnet/corefx/blob/master/src/System.Linq/src/System/Linq/IIListProvider.cs
Eg if someone uses Linq Count() method, if
-
Updated
Jul 24, 2019 - Java
-
Updated
Jan 9, 2020
-
Updated
Jun 4, 2020 - Kotlin
-
Updated
Jan 30, 2019 - C#
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
-
Updated
May 26, 2020 - Python
-
Updated
Aug 3, 2019
-
Updated
Jun 17, 2020 - Swift
-
Updated
Jun 6, 2020 - JavaScript
-
Updated
Jun 11, 2020 - C#
-
Updated
Jul 15, 2020 - TypeScript
-
Updated
Jul 6, 2020 - Vue
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:
``
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
Somebody in the class had a suggestion to package up the examples in a Jupyter notebook. This sounds like a helpful addition.
Improve this page
Add a description, image, and links to the reactivex topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the reactivex topic, visit your repo's landing page and select "manage topics."
Describe the bug
Recently C