Let's say you have a stream of stock updates StockUpdate:
public class StockUpdate
{
public string Symbol { get; set; }
public string Price { get; set; }
}
Every n seconds, you want to emit a List that contains the last value for each of the symbols.
How can I do this with RX.NET? Similar questions on StackOverflow leverage GroupBy/SelectMany with sample, but this would project each item, not a list. I could buffer that list again, but then that would create extra delay.
maybe you can try this.. by replacing the Observable.Empty<> by your source object...
a sorry you want a list of as result..