Uses of Interface
org.eclipse.microprofile.reactive.streams.operators.FilteringOperators
Packages that use FilteringOperators
Package
Description
MicroProfile Reactive Streams Operators.
-
Uses of FilteringOperators in org.eclipse.microprofile.reactive.streams.operators
Subinterfaces of FilteringOperators in org.eclipse.microprofile.reactive.streams.operatorsModifier and TypeInterfaceDescriptioninterfaceProcessorBuilder<T,R> A builder for aProcessor.interfaceA builder for aPublisher.Methods in org.eclipse.microprofile.reactive.streams.operators that return FilteringOperatorsModifier and TypeMethodDescriptionFilteringOperators.distinct()Creates a stream consisting of the distinct elements (according toObject.equals(Object)) of this stream.Drop the longest prefix of elements from this stream that satisfy the givenpredicate.Filter elements emitted by this publisher using the givenPredicate.FilteringOperators.limit(long maxSize) Truncate this stream, ensuring the stream is no longer thanmaxSizeelements in length.FilteringOperators.skip(long n) Discard the firstnof this stream.Take the longest prefix of elements from this stream that satisfy the givenpredicate.