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
{{ message }}
This repository has been archived by the owner on Nov 6, 2024. It is now read-only.
Currently we're using the JDK8 collector API for doing all terminal accumulations. It would be good to have an async alternative, eg AsyncCollector, where the accumulator and finisher functions return CompletionStage of a value when they are done. Then async alternatives of collect, reduce etc can be provided.
Note this could probably be implemented by a stateful mapCompletionStage.
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Currently we're using the JDK8 collector API for doing all terminal accumulations. It would be good to have an async alternative, eg
AsyncCollector
, where theaccumulator
andfinisher
functions returnCompletionStage
of a value when they are done. Then async alternatives ofcollect
,reduce
etc can be provided.Note this could probably be implemented by a stateful
mapCompletionStage
.The text was updated successfully, but these errors were encountered: