Skip to content
#

reactive-extensions

Here are 125 public repositories matching this topic...

ReactiveUI

An advanced, composable, functional reactive model-view-viewmodel framework for all .NET platforms that is inspired by functional reactive programming. ReactiveUI allows you to abstract mutable state away from your user interfaces, express the idea around a feature in one readable place and improve the testability of your application.

  • Updated Apr 14, 2021
  • C#
osi
osi commented Jan 22, 2021

The window operators should indicate if the returned Flux for each window is safe to subscribe to multiple times.

Documentation Issue

I had a data processing pipeline that I introduced batching to, using the window operator. In this pipeline, it will retry a batch if it faces a transient error. When batching was added, and it retried, I saw a failure of `IllegalStateException: UnicastP

FroMage
FroMage commented Jun 23, 2020

For debug purposes, it would be nice to add a mode to Mutiny which attaches stack traces to exceptions, to record where we created the Uni, rather than when it failed, which often doesn't have the right stack trace.

In the past, I've used this extensively:

    private static <V> CompletionStage<V> attachStackTrace(CompletionStage<V> cs) {
        Throwable exception = new RxExcep

Improve this page

Add a description, image, and links to the reactive-extensions topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the reactive-extensions topic, visit your repo's landing page and select "manage topics."

Learn more