Closed
Description
I've been trying, with limited success, to understand the discussion of creating custom 2.x operators. I think I get the section "Operator by extending a base reactive class", but what would really help for the "Operator targeting lift()" discussion is a complete, design-through-usage example of creating an operator. Is this possible?
Suggestion: a simple operator that transforms its input type, perhaps something like .countCharacters()
that would accept a String
and emit an Integer
with the number of characters in the String
. If possible, versions with and without backpressure would be extra helpful.