You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently partition will subscribe to whatever observable you get twice. Given that it is supposed to "partition", which sounds like splitting one thing into several parts, I'd think it should multicast the source.
ALSO: The partitionoperator just needs to be removed in favor of groupBy, as it doesn't make any sense as an operator with pipe.
The text was updated successfully, but these errors were encountered:
Currently
partition
will subscribe to whatever observable you get twice. Given that it is supposed to "partition", which sounds like splitting one thing into several parts, I'd think it should multicast the source.ALSO: The
partition
operator just needs to be removed in favor ofgroupBy
, as it doesn't make any sense as an operator withpipe
.The text was updated successfully, but these errors were encountered: