Jean-Marc Primeau
Jean-Marc Primeau
I've done this as RxSum You need to observe add, remove, clear, replace and have those subscribeWithStwte using the output total reactive property. The only issue I have with this...
I also made the more generic RxAggregate; would be nice to just override the linq methods directly, but I'm afraid of leaking Disposables. Thoughts on that would be appreciated.
Was at the beach when I wrote that... Here's some code. DisposableReadOnlyReactiveProperty is basically a reactive property that carries a disposable that will kill all those subscriptions; Would be happy...
I also find this inconvenient; how about ObserveBeforeReset() ?
Hi, The getter and setter sets the reactive property itself whereas the takeDamage fn sets the Value property of an existing reactive property. Do something like this: IntReactiveProperty HealthObservable =...
Right but then you have two methodes. Int Health { get; set; } And IReadOnlyRP HealthIObservable { get } Use health to set and have it looking clean with no...
Correct, you would set this at construction time or at initialization. Here is a sample from my project ` public abstract class EffortBasedLevel where DEFINITION:IEffortBasedLeveledDefinition { public DEFINITION Definition {...