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
Create a takeWhile method which handles uncommitted items.
Details
Right now if you use a takeWhile then it will shut down the stream as soon as the predicate fails. If there is anything that is not committed but past the takeWhile then it will not be completed/drained. It would be good to create a new mechanism to stop taking new items, yet not fully stop the stream until the existing processing is completed. Maybe a startTakeWhile and completeTakeWhile - or something along those lines.
The text was updated successfully, but these errors were encountered:
Short description
Create a
takeWhile
method which handles uncommitted items.Details
Right now if you use a
takeWhile
then it will shut down the stream as soon as the predicate fails. If there is anything that is not committed but past thetakeWhile
then it will not be completed/drained. It would be good to create a new mechanism to stop taking new items, yet not fully stop the stream until the existing processing is completed. Maybe astartTakeWhile
andcompleteTakeWhile
- or something along those lines.The text was updated successfully, but these errors were encountered: