Channels do really not work well with Reactive.Unit out of the box, since the channel’s inherent change check optimization does not play well with Unit
- Demos don’t translate from other types to Unit.
- generic usecases of channels have to change in case of type unit (just happened to me when i had to change some imgui from toggle button = boolean to button = unit
- switching between observable world (with all the operators) back to channel requires extra attention (see Observable<Unit> ToChannel)
even though i’m aware of the special case of a Unit message i consistently stumble over it. issue is, one has to remember when ‘chaining’ unit messages to always force them. either SetValue, or EnsureValue (force), Consume and Merge push eagerly etc.
i’d nearly call it a bug, at least a serious design flaw. since Unit messages are not some esoteric special case but quite integral due to the imgui.
were channels not still labelled experimental? maybe it’s not too late to do some breaking changes…
possible solutions come to my mind:
-
change Unit type to a unique instance to trigger channels change check if it’s actually a new message. pro: no need to change any other channel nodes + one could actually work with a spread of units and know which changed, cons: introduces friction when wrapping observables where unit is a basis type.
-
split channel nodes into safe/simple and advanced nodes, i don’t mean different versions. more like we already have it with EnforceValue (safe) and SetValue (guards off). so the observables conversions are imho more advanced, so get rid of internal change check.
Merge has two flavours anyways. the one with optional could use setvalue instead of EnsureValue internally. -
extend channels with properties like ValueChanged & MessageReceived
besides the all the ranting channels are a refreshing tool separate view from state/logic when used with other simple types. cheers @gregsn i guess