eclipse / microprofile-reactive-streams-operators

Microprofile project
Apache License 2.0
79 stars 33 forks source link

Stage type for collect(Supplier, BiConsumer) missing #136

Open akarnokd opened 4 years ago

akarnokd commented 4 years ago

There is a ...Builder.collect(Supplier, BiConsumer) method but there is no Stage variant that would return such functions.

Azquelt commented 4 years ago

The core implementation creates a Collector and and uses Stages.Collect.

As you've noted in #139, there isn't a direct correlation between the builder methods and the stages.