Replies: 1 comment
-
Yes, although DD is based on Rx, it provides its own set of operators. TakeLast is not one of them |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi, I am using DynamicData packagelatest version 7.12.11
mySourceList.Connect().WhereReasonsAre(ListChangeReason.Add).Do(msg => { Console.WriteLine("beforeTakeLast"); }).TakeLast(1000).Do(msg => { Console.WriteLine("AfterTakeLast"); }).Subscribe();
beforeTakeLast is printing properly for all the changes in sourceList.
But the changes does not propogate after TakeLast and line "AfterTakeLast" is never printed.
Am I missing something.
Beta Was this translation helpful? Give feedback.
All reactions