Open hantsy opened 3 months ago
The reactive streams define the spec, but Java 9 copies the Java API into its java.util.concurrent.Flow, the content is the same, but the package name is different.
java.util.concurrent.Flow
The popular libs that implement Reactive Streams spec include:
Java Flow(since Java 9) -> Including a simple Publisher implementation, the newest SmallRye Munity switches to Java Flow API.
The reactive streams define the spec, but Java 9 copies the Java API into its
java.util.concurrent.Flow
, the content is the same, but the package name is different.The popular libs that implement Reactive Streams spec include:
Java Flow(since Java 9) -> Including a simple Publisher implementation, the newest SmallRye Munity switches to Java Flow API.