system.interactive Questions

5

I'm incrementally introducing Ix.NET into a legacy project. I have a number of storage-level APIs that return Task<IEnumerable<T>>, but I want to adapt them to IAsyncEnumerable<T>...
Membranophone asked 27/3, 2019 at 18:20

2

Solved

I have an asynchronous sequence (stream) of messages that are arriving sometimes numerously and sometimes sporadically, and I would like to process them in batches of 10 messages per batch. I also ...
Mcclean asked 23/5, 2021 at 15:55

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

3

Solved

System.Interactive.dll includes a For() method with the following implementation: IEnumerable<TResult> For<TSource, TResult>( IEnumerable<TSource> source, Func<TSource, IEnu...
Newton asked 6/10, 2010 at 3:34

1

Solved

In System.Interactive.dll (v1.0.2521.0) from Reactive Extensions, EnumerableEx has both a Memoize method and a MemoizeAll method. The API documentation is identical for both of them: Creates an ...
Heinrike asked 28/5, 2010 at 18:32
1

© 2022 - 2024 — McMap. All rights reserved.