Skip to main content

Questions tagged [system.reactive]

System.Reactive refers to the Reactive Extensions for .NET, also known as Rx, but it more specifically refers to the use of the System.Reactive.dll assembly, which is part of Rx. System.Reactive provides developers with a reactive programming model, as opposed to the traditional imperative programming model.

2 votes
0 answers
2k views

I'm working on a web socket client wrapper around ClientWebSocket and this is kinda my first public library project, which is why I'm asking this question here. I ...
nop's user avatar
  • 819
4 votes
0 answers
188 views

These extensions create an IObservable<T> that creates a long running task that can be cancelled. It runs the Func<T>...
Christian Findlay's user avatar
2 votes
0 answers
83 views

I haven't found a good code example for a reactive retry operator with a retry strategy that was good enough for my needs. So I tried to make my own. It seems to work in my tests but I would really ...
Peter's user avatar
  • 21
7 votes
1 answer
13k views

LINQ Select usually works like this: IEnumerable<Task<int>> res = new[] {1,2,3}.Select(async i => i); I would ...
Dmitry Nogin's user avatar
  • 6,131
6 votes
0 answers
427 views

I am very confuse what is better approach to display child view and subscribe to its event on ReactiveUI WPF, so far I have 2 implementation that somehow works for my case: Implementation 1: ...
nyongrand's user avatar
  • 116
3 votes
0 answers
1k views

Just an Rx wrapper around Kafka to represent topic consumption as IObservable<T>: ...
Zazaeil's user avatar
  • 173
1 vote
1 answer
196 views

I am new to Reactive Extensions, I have the requirement to consume PairCollection<IPointCloud> which are fed into a service which performs a very expensive ...
MoonKnight's user avatar
4 votes
2 answers
144 views

I would like feedback on this DistinctUntilChangedBy operator for System.Reactive that only emits when the current value is ...
Magnus Lindhe's user avatar
5 votes
1 answer
213 views

I need an operator to allow a stream of booleans to act as a gate for another stream (let values pass when the gate stream is true, drop them when it's false). I would normally use Switch for this, ...
Marcel Popescu's user avatar
4 votes
0 answers
102 views

I'm trying to build a nicely encapsulated mechanism for providing timeouts that wait for a signalling channel to go quiet for a duration. As a fun study of ...
Gusdor's user avatar
  • 161
4 votes
1 answer
1k views

I'm experimenting with an alternative abstraction layer for logging that is build on top of the Reactive Extensions. This allows me to easily add features I need to my layer and map logs to any other ...
t3chb0t's user avatar
  • 44.7k
10 votes
2 answers
2k views

I wrote a simple utility for Retry and CircuitBreaker patterns. I implemented it by using ReactiveX because I thought it might actually be the perfect framework for it. I know that there is a project ...
t3chb0t's user avatar
  • 44.7k
4 votes
2 answers
2k views

This is a continuation of Parallel Task Queue that runs in sequence. Using Reactive Extensions I want to create a generic class a that process a task and executes it on a specific queue returning a <...
1iveowl's user avatar
  • 151
0 votes
1 answer
503 views

I am having a scenario where I need to execute observables that depends on the result of the first one. However I need to keep the result of the first observable. I couldn't find any extension that ...
Bruno Costa's user avatar
  • 5,606
2 votes
2 answers
2k views

I have these classes: ...
currarpickt's user avatar

15 30 50 per page