spring-attic / reactive-streams-commons

A joint research effort for building highly optimized Reactive-Streams compliant operators.
Apache License 2.0
357 stars 51 forks source link

Add PublisherEvery #8

Closed smaldini closed 8 years ago

smaldini commented 8 years ago

Signatures:

Return the last or the first element of the given batch count. Allows for simple sampling with fixed size.

smaldini commented 8 years ago

Closing issue, fixed by window().flatMap(PublisherBase::last) and window().flatMap(PublisherBase::next) and