rx.net Questions
1
Solved
I have an async method, say:
public async Task<T> GetAsync()
{
}
and would be called from:
public async Task<IEnumerable<T>> GetAllAsync()
{
foreach (var item in something)...
Rump asked 8/3, 2018 at 2:52
2
Solved
Having these three methods available in Rx.NET library
public static IObservable<TResult> Create<TResult>(Func<IObserver<TResult>, CancellationToken, Task> subscribeAsync)...
1
Solved
I have one observable that I use GroupBy on to get a number of streams. I actually want a Scan result over each sub-stream. Let's say the observable is over product prices and the scan result is av...
Fellini asked 17/4, 2018 at 14:24
1
Solved
I recently started working on Reactive Extensions, mostly observables at client side using Angular 2. The concept of observables of Rx and events of dotnet seems to be very similar. Are there...
Gokey asked 15/7, 2017 at 6:42
1
Solved
I am new to RX and have been investigating error handling and the use of Retry; I have the following (yes I know it's not a 'real' unit test but it gives me place to fiddle!!) and was wondering how...
Adenoma asked 6/6, 2017 at 13:17
2
Solved
I have a game (based on MonoGame / XNA) with an update method like so:
public void Update(GameTime gameTime)
{
component.Update(gameTime);
}
I would like to convert this to the Reactive patter...
Poach asked 3/7, 2016 at 15:13
2
Solved
I'm trying to parse an incoming stream of bytes that represents messages.
I need to split the stream and create a message structure for each part.
A message always starts with a 0x81 (BOM) and end...
Reexamine asked 7/6, 2016 at 19:18
0
Need: long-running program with TCP connections
A C# 4.0 (VS1010, XP) program needs to connect to a host using TCP, send and receive bytes, sometimes close the connection properly and reopen it la...
Thereon asked 18/8, 2015 at 17:48
3
Solved
I have a class which takes in a stream of events, and pushes out another stream of events.
All of the events use Reactive Extensions (RX). The incoming stream of events is pushed from an external...
Brede asked 11/7, 2015 at 21:29
1
Solved
After reading the explanation for why
Observable.Return(5)
.Repeat()
.Take(1)
never completes, but
Observable.Return(5, Scheduler.CurrentThread)
.Repeat()
.Take(1)
works as expected. I am sti...
Taphole asked 23/6, 2015 at 23:40
© 2022 - 2024 — McMap. All rights reserved.