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
As discussed in #2180 I would like to add a new TakeUntil operator that takes a CancellationToken as parameter.
I think the best approach is to implement it as close as possible to the other TakeUntil operators, especially the one that takes a DateTimeOffset.
It should forward all notifications from the source to new observers and register the OnComplete Method on the prodived CancellationToken.
If the CancellationToken is already cancled, it should never subscibe to the source and call the OnComplete Method directly.
I would be happy to implement it.
The text was updated successfully, but these errors were encountered:
As discussed in #2180 I would like to add a new
TakeUntil
operator that takes aCancellationToken
as parameter.I think the best approach is to implement it as close as possible to the other
TakeUntil
operators, especially the one that takes aDateTimeOffset
.It should forward all notifications from the source to new observers and register the
OnComplete
Method on the prodivedCancellationToken
.If the
CancellationToken
is already cancled, it should never subscibe to the source and call theOnComplete
Method directly.I would be happy to implement it.
The text was updated successfully, but these errors were encountered: