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
This issue is complicated by the fact we need to be able to represent a stream of values that may include an error. Using rxgo, we can effectively do this:
Actually, the original description for this item is incorrect. We are not forced to use Of to send items, in fact doing so this way degrades the DX. We will and should not enforce this.
SendItems has been modified to accept a variadic collection of Items rather than T. This means that we now have to invoke in the foloowing way:
this is in contrast to to rxgo:
This issue is complicated by the fact we need to be able to represent a stream of values that may include an error. Using rxgo, we can effectively do this:
but our modified version will not support this because error, can't be sent down a channel of T.
The text was updated successfully, but these errors were encountered: