Registry / other / microprofile-reactive-streams-operators-api

microprofile-reactive-streams-operators-api

JSON →
library3.0.1javamavenunverified

Eclipse MicroProfile Reactive Streams Operators API provides reactive stream operators for Java.

<dependency> <groupId>org.eclipse.microprofile.reactive-streams-operators</groupId> <artifactId>microprofile-reactive-streams-operators-api</artifactId> <version>3.0.1</version> </dependency>
INSTALL
IMPORT
SIG · MICROPROFILE-REACT
M
microprofile-reactive-streams-operators-api
otherjavav3.0.1
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

ReactiveStreams
org.eclipse.microprofile.reactive.streams.operators.ReactiveStreams

Uses ReactiveStreams to transform a stream of integers.

import org.eclipse.microprofile.reactive.streams.operators.ReactiveStreams; import java.util.concurrent.CompletionStage; import java.util.Arrays; public class Quickstart { public static void main(String[] args) { CompletionStage<Integer> result = ReactiveStreams.of(1, 2, 3) .map(i -> i * 2) .toList() .run(); result.thenAccept(System.out::println); } }
Debug
Known issues
breakingAPI may change between MicroProfile versions; check compatibility with your runtime.
fix
Use the same version of the API as your MicroProfile implementation (e.g., OpenLiberty, Thorntail).
affects: 1.x, 2.x, 3.x
Upgrade
Version history
3.0.1latest on Maven
Audit
Dependencies

No dependency data recorded yet.

Agent activity
4 hits · last 30 days
node
4
Resources
microprofile-reactive-streams-operators-api — mvn dependency:get microprofile-reactive-streams-operators-api · libregistry