├── .build └── deploy-doc.sh ├── .github ├── project.yml ├── release │ ├── maven-settings.xml.gpg │ └── smallrye-sign.asc.gpg └── workflows │ ├── build.yml │ ├── pre-release.yml │ └── release.yml ├── .gitignore ├── CODEOWNERS ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── cdi ├── pom.xml └── src │ ├── main │ ├── java │ │ └── io │ │ │ └── smallrye │ │ │ └── reactive │ │ │ └── streams │ │ │ └── cdi │ │ │ └── ReactiveEngineProvider.java │ └── resources │ │ └── META-INF │ │ └── beans.xml │ └── test │ ├── java │ └── io │ │ └── smallrye │ │ └── reactive │ │ └── streams │ │ └── cdi │ │ ├── MyBean.java │ │ └── ReactiveEngineProviderTest.java │ └── resources │ └── log4j2-test.xml ├── doc ├── assets │ ├── images │ │ ├── collect.png │ │ ├── concat.png │ │ ├── converters.png │ │ ├── distinct.png │ │ ├── dropWhile.png │ │ ├── empty.png │ │ ├── example.png │ │ ├── failed.png │ │ ├── filter.png │ │ ├── findFirst.png │ │ ├── flatMap.png │ │ ├── flatMapCompletionStage.png │ │ ├── flatMapIterable.png │ │ ├── flatMapRsPublisher.png │ │ ├── forEach.png │ │ ├── fromCompletionStage.png │ │ ├── fromCompletionStageNullable.png │ │ ├── fromIterable.png │ │ ├── generate.png │ │ ├── identity.png │ │ ├── ignore.png │ │ ├── iterate.png │ │ ├── limit.png │ │ ├── map.png │ │ ├── of-many.png │ │ ├── of-single.png │ │ ├── ofNullable.png │ │ ├── onComplete.png │ │ ├── onError.png │ │ ├── onErrorResume.png │ │ ├── onErrorResumeWith.png │ │ ├── onErrorResumeWithRsPublisher.png │ │ ├── onTerminate.png │ │ ├── peek.png │ │ ├── reduce-identity.png │ │ ├── reduce.png │ │ ├── skip.png │ │ ├── takeWhile.png │ │ └── toList.png │ └── style │ │ ├── foundation-potion.css │ │ └── style.css ├── docinfo.html ├── execution-model.adoc ├── getting-started.adoc ├── index.adoc ├── intro.adoc └── operators.adoc ├── examples ├── quickstart-camel │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── io │ │ └── smallrye │ │ └── reactive │ │ └── operators │ │ └── quickstart │ │ └── QuickStart.java ├── quickstart-vertx │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── io │ │ └── smallrye │ │ └── reactive │ │ └── operators │ │ └── quickstart │ │ ├── DataGenerator.java │ │ ├── DataProcessor.java │ │ └── QuickStart.java ├── quickstart │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── io │ │ └── smallrye │ │ └── reactive │ │ └── operators │ │ └── quickstart │ │ └── QuickStart.java └── snippets │ ├── pom.xml │ └── src │ └── main │ ├── java │ └── io │ │ └── smallrye │ │ └── reactive │ │ └── operators │ │ └── snippets │ │ ├── Comparison.java │ │ └── Operators.java │ └── resources │ ├── META-INF │ └── beans.xml │ └── log4j2.yaml ├── implementation ├── pom.xml └── src │ ├── main │ ├── java │ │ └── io │ │ │ └── smallrye │ │ │ └── reactive │ │ │ └── streams │ │ │ ├── Engine.java │ │ │ ├── operators │ │ │ ├── Operator.java │ │ │ ├── ProcessingStage.java │ │ │ ├── ProcessingStageFactory.java │ │ │ ├── ProcessorOperator.java │ │ │ ├── PublisherOperator.java │ │ │ ├── PublisherStage.java │ │ │ ├── PublisherStageFactory.java │ │ │ ├── TerminalOperator.java │ │ │ ├── TerminalStage.java │ │ │ └── TerminalStageFactory.java │ │ │ ├── spi │ │ │ ├── ExecutionModel.java │ │ │ └── Transformer.java │ │ │ ├── stages │ │ │ ├── CancelStageFactory.java │ │ │ ├── CollectStageFactory.java │ │ │ ├── ConcatStageFactory.java │ │ │ ├── CoupledStageFactory.java │ │ │ ├── DistinctStageFactory.java │ │ │ ├── DropWhileStageFactory.java │ │ │ ├── FailedPublisherStageFactory.java │ │ │ ├── FilterStageFactory.java │ │ │ ├── FindFirstStageFactory.java │ │ │ ├── FlatMapCompletionStageFactory.java │ │ │ ├── FlatMapIterableStageFactory.java │ │ │ ├── FlatMapStageFactory.java │ │ │ ├── FromCompletionStageFactory.java │ │ │ ├── FromCompletionStageNullableFactory.java │ │ │ ├── FromIterableStageFactory.java │ │ │ ├── FromPublisherStageFactory.java │ │ │ ├── LimitStageFactory.java │ │ │ ├── MapStageFactory.java │ │ │ ├── OnCompleteStageFactory.java │ │ │ ├── OnErrorResumeStageFactory.java │ │ │ ├── OnErrorResumeWithStageFactory.java │ │ │ ├── OnErrorStageFactory.java │ │ │ ├── OnTerminateStageFactory.java │ │ │ ├── PeekStageFactory.java │ │ │ ├── ProcessorStageFactory.java │ │ │ ├── SkipStageFactory.java │ │ │ ├── Stages.java │ │ │ ├── SubscriberStageFactory.java │ │ │ └── TakeWhileStageFactory.java │ │ │ └── utils │ │ │ ├── CancellablePublisher.java │ │ │ ├── CancellationSubscriber.java │ │ │ ├── Casts.java │ │ │ ├── CollectorSubscriber.java │ │ │ ├── CompletionStageToPublisher.java │ │ │ ├── ConnectableProcessor.java │ │ │ ├── CouplingProcessor.java │ │ │ ├── DefaultSubscriberWithCompletionStage.java │ │ │ ├── DelegatingSubscriber.java │ │ │ ├── EmptySubscription.java │ │ │ ├── FlowableCollector.java │ │ │ ├── SubscriptionObserver.java │ │ │ ├── WrappedProcessor.java │ │ │ ├── WrappedSubscriber.java │ │ │ ├── WrappedSubscription.java │ │ │ └── recovery │ │ │ ├── OnErrorResumeWith.java │ │ │ ├── OnErrorResumeWithSubscriber.java │ │ │ ├── OnErrorReturn.java │ │ │ └── OnErrorReturnSubscriber.java │ └── resources │ │ └── META-INF │ │ └── services │ │ └── org.eclipse.microprofile.reactive.streams.operators.spi.ReactiveStreamsEngine │ └── test │ └── java │ ├── io │ └── smallrye │ │ └── reactive │ │ └── streams │ │ ├── APITest.java │ │ ├── EngineTest.java │ │ ├── stages │ │ ├── CancelStageFactoryTest.java │ │ ├── CollectStageFactoryTest.java │ │ ├── ConcatStageFactoryTest.java │ │ ├── CoupledStageFactoryTest.java │ │ ├── DistinctStageFactoryTest.java │ │ ├── DropWhileStageFactoryTest.java │ │ ├── FailedPublisherStageFactoryTest.java │ │ ├── FilterStageFactoryTest.java │ │ ├── FindFirstStageFactoryTest.java │ │ ├── FlatMapCompletionStageFactoryTest.java │ │ ├── FlatMapIterableStageFactoryTest.java │ │ ├── FlatMapStageFactoryTest.java │ │ ├── FromCompletionStageFactoryNullableTest.java │ │ ├── FromCompletionStageFactoryTest.java │ │ ├── FromIterableStageFactoryTest.java │ │ ├── FromPublisherStageFactoryTest.java │ │ ├── LimitStageFactoryTest.java │ │ ├── MapStageFactoryTest.java │ │ ├── OnCompleteStageFactoryTest.java │ │ ├── OnErrorResumeWithStageFactoryTest.java │ │ ├── OnErrorStageFactoryTest.java │ │ ├── OnTerminateStageFactoryTest.java │ │ ├── PeekStageFactoryTest.java │ │ ├── ProcessorStageFactoryTest.java │ │ ├── SkipStageFactoryTest.java │ │ ├── StageTestBase.java │ │ ├── SubscriberStageFactoryTest.java │ │ └── TakeWhileStageFactoryTest.java │ │ └── utils │ │ ├── WrappedSubscriberTest.java │ │ └── WrappedSubscriptionTest.java │ └── tck │ └── ReactiveStreamsEngineImplTck.java ├── pom.xml ├── release └── pom.xml ├── tck ├── pom.xml └── src │ └── test │ ├── java │ └── io │ │ └── smallrye │ │ └── reactive │ │ └── streams │ │ └── tck │ │ ├── ApplicationEnhancer.java │ │ ├── InContainerIT.java │ │ └── ProducerInjectionProcessor.java │ └── resources │ ├── META-INF │ └── services │ │ └── org.jboss.arquillian.core.spi.LoadableExtension │ └── log4j2-test.xml └── vertx-execution-model ├── pom.xml └── src ├── main ├── java │ └── io │ │ └── smallrye │ │ └── reactive │ │ └── streams │ │ └── vertx │ │ └── VertxExecutionModel.java └── resources │ └── META-INF │ └── services │ └── io.smallrye.reactive.streams.spi.ExecutionModel └── test └── java └── io └── smallrye └── reactive └── streams └── stages ├── CollectStageFactoryTest.java ├── ConcatStageFactoryTest.java ├── DistinctStageFactoryTest.java ├── DropWhileStageFactoryTest.java ├── FailedPublisherStageFactoryTest.java ├── FilterStageFactoryTest.java ├── FindFirstStageFactoryTest.java ├── FlatMapCompletionStageFactoryTest.java ├── FlatMapIterableStageFactoryTest.java ├── FlatMapStageFactoryTest.java ├── FromCompletionStageFactoryNullableTest.java ├── FromCompletionStageFactoryTest.java ├── FromIterableStageFactoryTest.java ├── FromPublisherStageFactoryTest.java ├── LimitStageFactoryTest.java ├── MapStageFactoryTest.java ├── OnCompleteStageFactoryTest.java ├── OnErrorResumeWithStageFactoryTest.java ├── OnErrorStageFactoryTest.java ├── OnTerminateStageFactoryTest.java ├── PeekStageFactoryTest.java ├── ProcessorStageFactoryTest.java ├── SkipStageFactoryTest.java ├── StageTestBase.java ├── SubscriberStageFactoryTest.java └── TakeWhileStageFactoryTest.java /.build/deploy-doc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/.build/deploy-doc.sh -------------------------------------------------------------------------------- /.github/project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/.github/project.yml -------------------------------------------------------------------------------- /.github/release/maven-settings.xml.gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/.github/release/maven-settings.xml.gpg -------------------------------------------------------------------------------- /.github/release/smallrye-sign.asc.gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/.github/release/smallrye-sign.asc.gpg -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/pre-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/.github/workflows/pre-release.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/.gitignore -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- 1 | .github @smallrye/reactive-operators 2 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/README.md -------------------------------------------------------------------------------- /cdi/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/cdi/pom.xml -------------------------------------------------------------------------------- /cdi/src/main/java/io/smallrye/reactive/streams/cdi/ReactiveEngineProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/cdi/src/main/java/io/smallrye/reactive/streams/cdi/ReactiveEngineProvider.java -------------------------------------------------------------------------------- /cdi/src/main/resources/META-INF/beans.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/cdi/src/main/resources/META-INF/beans.xml -------------------------------------------------------------------------------- /cdi/src/test/java/io/smallrye/reactive/streams/cdi/MyBean.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/cdi/src/test/java/io/smallrye/reactive/streams/cdi/MyBean.java -------------------------------------------------------------------------------- /cdi/src/test/java/io/smallrye/reactive/streams/cdi/ReactiveEngineProviderTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/cdi/src/test/java/io/smallrye/reactive/streams/cdi/ReactiveEngineProviderTest.java -------------------------------------------------------------------------------- /cdi/src/test/resources/log4j2-test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/cdi/src/test/resources/log4j2-test.xml -------------------------------------------------------------------------------- /doc/assets/images/collect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/doc/assets/images/collect.png -------------------------------------------------------------------------------- /doc/assets/images/concat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/doc/assets/images/concat.png -------------------------------------------------------------------------------- /doc/assets/images/converters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/doc/assets/images/converters.png -------------------------------------------------------------------------------- /doc/assets/images/distinct.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/doc/assets/images/distinct.png -------------------------------------------------------------------------------- /doc/assets/images/dropWhile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/doc/assets/images/dropWhile.png -------------------------------------------------------------------------------- /doc/assets/images/empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/doc/assets/images/empty.png -------------------------------------------------------------------------------- /doc/assets/images/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/doc/assets/images/example.png -------------------------------------------------------------------------------- /doc/assets/images/failed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/doc/assets/images/failed.png -------------------------------------------------------------------------------- /doc/assets/images/filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/doc/assets/images/filter.png -------------------------------------------------------------------------------- /doc/assets/images/findFirst.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/doc/assets/images/findFirst.png -------------------------------------------------------------------------------- /doc/assets/images/flatMap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/doc/assets/images/flatMap.png -------------------------------------------------------------------------------- /doc/assets/images/flatMapCompletionStage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/doc/assets/images/flatMapCompletionStage.png -------------------------------------------------------------------------------- /doc/assets/images/flatMapIterable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/doc/assets/images/flatMapIterable.png -------------------------------------------------------------------------------- /doc/assets/images/flatMapRsPublisher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/doc/assets/images/flatMapRsPublisher.png -------------------------------------------------------------------------------- /doc/assets/images/forEach.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/doc/assets/images/forEach.png -------------------------------------------------------------------------------- /doc/assets/images/fromCompletionStage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/doc/assets/images/fromCompletionStage.png -------------------------------------------------------------------------------- /doc/assets/images/fromCompletionStageNullable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/doc/assets/images/fromCompletionStageNullable.png -------------------------------------------------------------------------------- /doc/assets/images/fromIterable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/doc/assets/images/fromIterable.png -------------------------------------------------------------------------------- /doc/assets/images/generate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/doc/assets/images/generate.png -------------------------------------------------------------------------------- /doc/assets/images/identity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/doc/assets/images/identity.png -------------------------------------------------------------------------------- /doc/assets/images/ignore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/doc/assets/images/ignore.png -------------------------------------------------------------------------------- /doc/assets/images/iterate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/doc/assets/images/iterate.png -------------------------------------------------------------------------------- /doc/assets/images/limit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/doc/assets/images/limit.png -------------------------------------------------------------------------------- /doc/assets/images/map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/doc/assets/images/map.png -------------------------------------------------------------------------------- /doc/assets/images/of-many.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/doc/assets/images/of-many.png -------------------------------------------------------------------------------- /doc/assets/images/of-single.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/doc/assets/images/of-single.png -------------------------------------------------------------------------------- /doc/assets/images/ofNullable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/doc/assets/images/ofNullable.png -------------------------------------------------------------------------------- /doc/assets/images/onComplete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/doc/assets/images/onComplete.png -------------------------------------------------------------------------------- /doc/assets/images/onError.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/doc/assets/images/onError.png -------------------------------------------------------------------------------- /doc/assets/images/onErrorResume.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/doc/assets/images/onErrorResume.png -------------------------------------------------------------------------------- /doc/assets/images/onErrorResumeWith.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/doc/assets/images/onErrorResumeWith.png -------------------------------------------------------------------------------- /doc/assets/images/onErrorResumeWithRsPublisher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/doc/assets/images/onErrorResumeWithRsPublisher.png -------------------------------------------------------------------------------- /doc/assets/images/onTerminate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/doc/assets/images/onTerminate.png -------------------------------------------------------------------------------- /doc/assets/images/peek.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/doc/assets/images/peek.png -------------------------------------------------------------------------------- /doc/assets/images/reduce-identity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/doc/assets/images/reduce-identity.png -------------------------------------------------------------------------------- /doc/assets/images/reduce.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/doc/assets/images/reduce.png -------------------------------------------------------------------------------- /doc/assets/images/skip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/doc/assets/images/skip.png -------------------------------------------------------------------------------- /doc/assets/images/takeWhile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/doc/assets/images/takeWhile.png -------------------------------------------------------------------------------- /doc/assets/images/toList.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/doc/assets/images/toList.png -------------------------------------------------------------------------------- /doc/assets/style/foundation-potion.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/doc/assets/style/foundation-potion.css -------------------------------------------------------------------------------- /doc/assets/style/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/doc/assets/style/style.css -------------------------------------------------------------------------------- /doc/docinfo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/doc/docinfo.html -------------------------------------------------------------------------------- /doc/execution-model.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/doc/execution-model.adoc -------------------------------------------------------------------------------- /doc/getting-started.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/doc/getting-started.adoc -------------------------------------------------------------------------------- /doc/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/doc/index.adoc -------------------------------------------------------------------------------- /doc/intro.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/doc/intro.adoc -------------------------------------------------------------------------------- /doc/operators.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/doc/operators.adoc -------------------------------------------------------------------------------- /examples/quickstart-camel/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/examples/quickstart-camel/pom.xml -------------------------------------------------------------------------------- /examples/quickstart-camel/src/main/java/io/smallrye/reactive/operators/quickstart/QuickStart.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/examples/quickstart-camel/src/main/java/io/smallrye/reactive/operators/quickstart/QuickStart.java -------------------------------------------------------------------------------- /examples/quickstart-vertx/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/examples/quickstart-vertx/pom.xml -------------------------------------------------------------------------------- /examples/quickstart-vertx/src/main/java/io/smallrye/reactive/operators/quickstart/DataGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/examples/quickstart-vertx/src/main/java/io/smallrye/reactive/operators/quickstart/DataGenerator.java -------------------------------------------------------------------------------- /examples/quickstart-vertx/src/main/java/io/smallrye/reactive/operators/quickstart/DataProcessor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/examples/quickstart-vertx/src/main/java/io/smallrye/reactive/operators/quickstart/DataProcessor.java -------------------------------------------------------------------------------- /examples/quickstart-vertx/src/main/java/io/smallrye/reactive/operators/quickstart/QuickStart.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/examples/quickstart-vertx/src/main/java/io/smallrye/reactive/operators/quickstart/QuickStart.java -------------------------------------------------------------------------------- /examples/quickstart/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/examples/quickstart/pom.xml -------------------------------------------------------------------------------- /examples/quickstart/src/main/java/io/smallrye/reactive/operators/quickstart/QuickStart.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/examples/quickstart/src/main/java/io/smallrye/reactive/operators/quickstart/QuickStart.java -------------------------------------------------------------------------------- /examples/snippets/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/examples/snippets/pom.xml -------------------------------------------------------------------------------- /examples/snippets/src/main/java/io/smallrye/reactive/operators/snippets/Comparison.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/examples/snippets/src/main/java/io/smallrye/reactive/operators/snippets/Comparison.java -------------------------------------------------------------------------------- /examples/snippets/src/main/java/io/smallrye/reactive/operators/snippets/Operators.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/examples/snippets/src/main/java/io/smallrye/reactive/operators/snippets/Operators.java -------------------------------------------------------------------------------- /examples/snippets/src/main/resources/META-INF/beans.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/examples/snippets/src/main/resources/META-INF/beans.xml -------------------------------------------------------------------------------- /examples/snippets/src/main/resources/log4j2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/examples/snippets/src/main/resources/log4j2.yaml -------------------------------------------------------------------------------- /implementation/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/implementation/pom.xml -------------------------------------------------------------------------------- /implementation/src/main/java/io/smallrye/reactive/streams/Engine.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/implementation/src/main/java/io/smallrye/reactive/streams/Engine.java -------------------------------------------------------------------------------- /implementation/src/main/java/io/smallrye/reactive/streams/operators/Operator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/implementation/src/main/java/io/smallrye/reactive/streams/operators/Operator.java -------------------------------------------------------------------------------- /implementation/src/main/java/io/smallrye/reactive/streams/operators/ProcessingStage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/implementation/src/main/java/io/smallrye/reactive/streams/operators/ProcessingStage.java -------------------------------------------------------------------------------- /implementation/src/main/java/io/smallrye/reactive/streams/operators/ProcessingStageFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/implementation/src/main/java/io/smallrye/reactive/streams/operators/ProcessingStageFactory.java -------------------------------------------------------------------------------- /implementation/src/main/java/io/smallrye/reactive/streams/operators/ProcessorOperator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/implementation/src/main/java/io/smallrye/reactive/streams/operators/ProcessorOperator.java -------------------------------------------------------------------------------- /implementation/src/main/java/io/smallrye/reactive/streams/operators/PublisherOperator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/implementation/src/main/java/io/smallrye/reactive/streams/operators/PublisherOperator.java -------------------------------------------------------------------------------- /implementation/src/main/java/io/smallrye/reactive/streams/operators/PublisherStage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/implementation/src/main/java/io/smallrye/reactive/streams/operators/PublisherStage.java -------------------------------------------------------------------------------- /implementation/src/main/java/io/smallrye/reactive/streams/operators/PublisherStageFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/implementation/src/main/java/io/smallrye/reactive/streams/operators/PublisherStageFactory.java -------------------------------------------------------------------------------- /implementation/src/main/java/io/smallrye/reactive/streams/operators/TerminalOperator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/implementation/src/main/java/io/smallrye/reactive/streams/operators/TerminalOperator.java -------------------------------------------------------------------------------- /implementation/src/main/java/io/smallrye/reactive/streams/operators/TerminalStage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/implementation/src/main/java/io/smallrye/reactive/streams/operators/TerminalStage.java -------------------------------------------------------------------------------- /implementation/src/main/java/io/smallrye/reactive/streams/operators/TerminalStageFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/implementation/src/main/java/io/smallrye/reactive/streams/operators/TerminalStageFactory.java -------------------------------------------------------------------------------- /implementation/src/main/java/io/smallrye/reactive/streams/spi/ExecutionModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/implementation/src/main/java/io/smallrye/reactive/streams/spi/ExecutionModel.java -------------------------------------------------------------------------------- /implementation/src/main/java/io/smallrye/reactive/streams/spi/Transformer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/implementation/src/main/java/io/smallrye/reactive/streams/spi/Transformer.java -------------------------------------------------------------------------------- /implementation/src/main/java/io/smallrye/reactive/streams/stages/CancelStageFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/implementation/src/main/java/io/smallrye/reactive/streams/stages/CancelStageFactory.java -------------------------------------------------------------------------------- /implementation/src/main/java/io/smallrye/reactive/streams/stages/CollectStageFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/implementation/src/main/java/io/smallrye/reactive/streams/stages/CollectStageFactory.java -------------------------------------------------------------------------------- /implementation/src/main/java/io/smallrye/reactive/streams/stages/ConcatStageFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/implementation/src/main/java/io/smallrye/reactive/streams/stages/ConcatStageFactory.java -------------------------------------------------------------------------------- /implementation/src/main/java/io/smallrye/reactive/streams/stages/CoupledStageFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/implementation/src/main/java/io/smallrye/reactive/streams/stages/CoupledStageFactory.java -------------------------------------------------------------------------------- /implementation/src/main/java/io/smallrye/reactive/streams/stages/DistinctStageFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/implementation/src/main/java/io/smallrye/reactive/streams/stages/DistinctStageFactory.java -------------------------------------------------------------------------------- /implementation/src/main/java/io/smallrye/reactive/streams/stages/DropWhileStageFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/implementation/src/main/java/io/smallrye/reactive/streams/stages/DropWhileStageFactory.java -------------------------------------------------------------------------------- /implementation/src/main/java/io/smallrye/reactive/streams/stages/FailedPublisherStageFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/implementation/src/main/java/io/smallrye/reactive/streams/stages/FailedPublisherStageFactory.java -------------------------------------------------------------------------------- /implementation/src/main/java/io/smallrye/reactive/streams/stages/FilterStageFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/implementation/src/main/java/io/smallrye/reactive/streams/stages/FilterStageFactory.java -------------------------------------------------------------------------------- /implementation/src/main/java/io/smallrye/reactive/streams/stages/FindFirstStageFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/implementation/src/main/java/io/smallrye/reactive/streams/stages/FindFirstStageFactory.java -------------------------------------------------------------------------------- /implementation/src/main/java/io/smallrye/reactive/streams/stages/FlatMapCompletionStageFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/implementation/src/main/java/io/smallrye/reactive/streams/stages/FlatMapCompletionStageFactory.java -------------------------------------------------------------------------------- /implementation/src/main/java/io/smallrye/reactive/streams/stages/FlatMapIterableStageFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/implementation/src/main/java/io/smallrye/reactive/streams/stages/FlatMapIterableStageFactory.java -------------------------------------------------------------------------------- /implementation/src/main/java/io/smallrye/reactive/streams/stages/FlatMapStageFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/implementation/src/main/java/io/smallrye/reactive/streams/stages/FlatMapStageFactory.java -------------------------------------------------------------------------------- /implementation/src/main/java/io/smallrye/reactive/streams/stages/FromCompletionStageFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/implementation/src/main/java/io/smallrye/reactive/streams/stages/FromCompletionStageFactory.java -------------------------------------------------------------------------------- /implementation/src/main/java/io/smallrye/reactive/streams/stages/FromCompletionStageNullableFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/implementation/src/main/java/io/smallrye/reactive/streams/stages/FromCompletionStageNullableFactory.java -------------------------------------------------------------------------------- /implementation/src/main/java/io/smallrye/reactive/streams/stages/FromIterableStageFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/implementation/src/main/java/io/smallrye/reactive/streams/stages/FromIterableStageFactory.java -------------------------------------------------------------------------------- /implementation/src/main/java/io/smallrye/reactive/streams/stages/FromPublisherStageFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/implementation/src/main/java/io/smallrye/reactive/streams/stages/FromPublisherStageFactory.java -------------------------------------------------------------------------------- /implementation/src/main/java/io/smallrye/reactive/streams/stages/LimitStageFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/implementation/src/main/java/io/smallrye/reactive/streams/stages/LimitStageFactory.java -------------------------------------------------------------------------------- /implementation/src/main/java/io/smallrye/reactive/streams/stages/MapStageFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/implementation/src/main/java/io/smallrye/reactive/streams/stages/MapStageFactory.java -------------------------------------------------------------------------------- /implementation/src/main/java/io/smallrye/reactive/streams/stages/OnCompleteStageFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/implementation/src/main/java/io/smallrye/reactive/streams/stages/OnCompleteStageFactory.java -------------------------------------------------------------------------------- /implementation/src/main/java/io/smallrye/reactive/streams/stages/OnErrorResumeStageFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/implementation/src/main/java/io/smallrye/reactive/streams/stages/OnErrorResumeStageFactory.java -------------------------------------------------------------------------------- /implementation/src/main/java/io/smallrye/reactive/streams/stages/OnErrorResumeWithStageFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/implementation/src/main/java/io/smallrye/reactive/streams/stages/OnErrorResumeWithStageFactory.java -------------------------------------------------------------------------------- /implementation/src/main/java/io/smallrye/reactive/streams/stages/OnErrorStageFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/implementation/src/main/java/io/smallrye/reactive/streams/stages/OnErrorStageFactory.java -------------------------------------------------------------------------------- /implementation/src/main/java/io/smallrye/reactive/streams/stages/OnTerminateStageFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/implementation/src/main/java/io/smallrye/reactive/streams/stages/OnTerminateStageFactory.java -------------------------------------------------------------------------------- /implementation/src/main/java/io/smallrye/reactive/streams/stages/PeekStageFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/implementation/src/main/java/io/smallrye/reactive/streams/stages/PeekStageFactory.java -------------------------------------------------------------------------------- /implementation/src/main/java/io/smallrye/reactive/streams/stages/ProcessorStageFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/implementation/src/main/java/io/smallrye/reactive/streams/stages/ProcessorStageFactory.java -------------------------------------------------------------------------------- /implementation/src/main/java/io/smallrye/reactive/streams/stages/SkipStageFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/implementation/src/main/java/io/smallrye/reactive/streams/stages/SkipStageFactory.java -------------------------------------------------------------------------------- /implementation/src/main/java/io/smallrye/reactive/streams/stages/Stages.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/implementation/src/main/java/io/smallrye/reactive/streams/stages/Stages.java -------------------------------------------------------------------------------- /implementation/src/main/java/io/smallrye/reactive/streams/stages/SubscriberStageFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/implementation/src/main/java/io/smallrye/reactive/streams/stages/SubscriberStageFactory.java -------------------------------------------------------------------------------- /implementation/src/main/java/io/smallrye/reactive/streams/stages/TakeWhileStageFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/implementation/src/main/java/io/smallrye/reactive/streams/stages/TakeWhileStageFactory.java -------------------------------------------------------------------------------- /implementation/src/main/java/io/smallrye/reactive/streams/utils/CancellablePublisher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/implementation/src/main/java/io/smallrye/reactive/streams/utils/CancellablePublisher.java -------------------------------------------------------------------------------- /implementation/src/main/java/io/smallrye/reactive/streams/utils/CancellationSubscriber.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/implementation/src/main/java/io/smallrye/reactive/streams/utils/CancellationSubscriber.java -------------------------------------------------------------------------------- /implementation/src/main/java/io/smallrye/reactive/streams/utils/Casts.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/implementation/src/main/java/io/smallrye/reactive/streams/utils/Casts.java -------------------------------------------------------------------------------- /implementation/src/main/java/io/smallrye/reactive/streams/utils/CollectorSubscriber.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/implementation/src/main/java/io/smallrye/reactive/streams/utils/CollectorSubscriber.java -------------------------------------------------------------------------------- /implementation/src/main/java/io/smallrye/reactive/streams/utils/CompletionStageToPublisher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/implementation/src/main/java/io/smallrye/reactive/streams/utils/CompletionStageToPublisher.java -------------------------------------------------------------------------------- /implementation/src/main/java/io/smallrye/reactive/streams/utils/ConnectableProcessor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/implementation/src/main/java/io/smallrye/reactive/streams/utils/ConnectableProcessor.java -------------------------------------------------------------------------------- /implementation/src/main/java/io/smallrye/reactive/streams/utils/CouplingProcessor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/implementation/src/main/java/io/smallrye/reactive/streams/utils/CouplingProcessor.java -------------------------------------------------------------------------------- /implementation/src/main/java/io/smallrye/reactive/streams/utils/DefaultSubscriberWithCompletionStage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/implementation/src/main/java/io/smallrye/reactive/streams/utils/DefaultSubscriberWithCompletionStage.java -------------------------------------------------------------------------------- /implementation/src/main/java/io/smallrye/reactive/streams/utils/DelegatingSubscriber.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/implementation/src/main/java/io/smallrye/reactive/streams/utils/DelegatingSubscriber.java -------------------------------------------------------------------------------- /implementation/src/main/java/io/smallrye/reactive/streams/utils/EmptySubscription.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/implementation/src/main/java/io/smallrye/reactive/streams/utils/EmptySubscription.java -------------------------------------------------------------------------------- /implementation/src/main/java/io/smallrye/reactive/streams/utils/FlowableCollector.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/implementation/src/main/java/io/smallrye/reactive/streams/utils/FlowableCollector.java -------------------------------------------------------------------------------- /implementation/src/main/java/io/smallrye/reactive/streams/utils/SubscriptionObserver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/implementation/src/main/java/io/smallrye/reactive/streams/utils/SubscriptionObserver.java -------------------------------------------------------------------------------- /implementation/src/main/java/io/smallrye/reactive/streams/utils/WrappedProcessor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/implementation/src/main/java/io/smallrye/reactive/streams/utils/WrappedProcessor.java -------------------------------------------------------------------------------- /implementation/src/main/java/io/smallrye/reactive/streams/utils/WrappedSubscriber.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/implementation/src/main/java/io/smallrye/reactive/streams/utils/WrappedSubscriber.java -------------------------------------------------------------------------------- /implementation/src/main/java/io/smallrye/reactive/streams/utils/WrappedSubscription.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/implementation/src/main/java/io/smallrye/reactive/streams/utils/WrappedSubscription.java -------------------------------------------------------------------------------- /implementation/src/main/java/io/smallrye/reactive/streams/utils/recovery/OnErrorResumeWith.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/implementation/src/main/java/io/smallrye/reactive/streams/utils/recovery/OnErrorResumeWith.java -------------------------------------------------------------------------------- /implementation/src/main/java/io/smallrye/reactive/streams/utils/recovery/OnErrorResumeWithSubscriber.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/implementation/src/main/java/io/smallrye/reactive/streams/utils/recovery/OnErrorResumeWithSubscriber.java -------------------------------------------------------------------------------- /implementation/src/main/java/io/smallrye/reactive/streams/utils/recovery/OnErrorReturn.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/implementation/src/main/java/io/smallrye/reactive/streams/utils/recovery/OnErrorReturn.java -------------------------------------------------------------------------------- /implementation/src/main/java/io/smallrye/reactive/streams/utils/recovery/OnErrorReturnSubscriber.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/implementation/src/main/java/io/smallrye/reactive/streams/utils/recovery/OnErrorReturnSubscriber.java -------------------------------------------------------------------------------- /implementation/src/main/resources/META-INF/services/org.eclipse.microprofile.reactive.streams.operators.spi.ReactiveStreamsEngine: -------------------------------------------------------------------------------- 1 | io.smallrye.reactive.streams.Engine -------------------------------------------------------------------------------- /implementation/src/test/java/io/smallrye/reactive/streams/APITest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/implementation/src/test/java/io/smallrye/reactive/streams/APITest.java -------------------------------------------------------------------------------- /implementation/src/test/java/io/smallrye/reactive/streams/EngineTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/implementation/src/test/java/io/smallrye/reactive/streams/EngineTest.java -------------------------------------------------------------------------------- /implementation/src/test/java/io/smallrye/reactive/streams/stages/CancelStageFactoryTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/implementation/src/test/java/io/smallrye/reactive/streams/stages/CancelStageFactoryTest.java -------------------------------------------------------------------------------- /implementation/src/test/java/io/smallrye/reactive/streams/stages/CollectStageFactoryTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/implementation/src/test/java/io/smallrye/reactive/streams/stages/CollectStageFactoryTest.java -------------------------------------------------------------------------------- /implementation/src/test/java/io/smallrye/reactive/streams/stages/ConcatStageFactoryTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/implementation/src/test/java/io/smallrye/reactive/streams/stages/ConcatStageFactoryTest.java -------------------------------------------------------------------------------- /implementation/src/test/java/io/smallrye/reactive/streams/stages/CoupledStageFactoryTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/implementation/src/test/java/io/smallrye/reactive/streams/stages/CoupledStageFactoryTest.java -------------------------------------------------------------------------------- /implementation/src/test/java/io/smallrye/reactive/streams/stages/DistinctStageFactoryTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/implementation/src/test/java/io/smallrye/reactive/streams/stages/DistinctStageFactoryTest.java -------------------------------------------------------------------------------- /implementation/src/test/java/io/smallrye/reactive/streams/stages/DropWhileStageFactoryTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/implementation/src/test/java/io/smallrye/reactive/streams/stages/DropWhileStageFactoryTest.java -------------------------------------------------------------------------------- /implementation/src/test/java/io/smallrye/reactive/streams/stages/FailedPublisherStageFactoryTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/implementation/src/test/java/io/smallrye/reactive/streams/stages/FailedPublisherStageFactoryTest.java -------------------------------------------------------------------------------- /implementation/src/test/java/io/smallrye/reactive/streams/stages/FilterStageFactoryTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/implementation/src/test/java/io/smallrye/reactive/streams/stages/FilterStageFactoryTest.java -------------------------------------------------------------------------------- /implementation/src/test/java/io/smallrye/reactive/streams/stages/FindFirstStageFactoryTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/implementation/src/test/java/io/smallrye/reactive/streams/stages/FindFirstStageFactoryTest.java -------------------------------------------------------------------------------- /implementation/src/test/java/io/smallrye/reactive/streams/stages/FlatMapCompletionStageFactoryTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/implementation/src/test/java/io/smallrye/reactive/streams/stages/FlatMapCompletionStageFactoryTest.java -------------------------------------------------------------------------------- /implementation/src/test/java/io/smallrye/reactive/streams/stages/FlatMapIterableStageFactoryTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/implementation/src/test/java/io/smallrye/reactive/streams/stages/FlatMapIterableStageFactoryTest.java -------------------------------------------------------------------------------- /implementation/src/test/java/io/smallrye/reactive/streams/stages/FlatMapStageFactoryTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/implementation/src/test/java/io/smallrye/reactive/streams/stages/FlatMapStageFactoryTest.java -------------------------------------------------------------------------------- /implementation/src/test/java/io/smallrye/reactive/streams/stages/FromCompletionStageFactoryNullableTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/implementation/src/test/java/io/smallrye/reactive/streams/stages/FromCompletionStageFactoryNullableTest.java -------------------------------------------------------------------------------- /implementation/src/test/java/io/smallrye/reactive/streams/stages/FromCompletionStageFactoryTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/implementation/src/test/java/io/smallrye/reactive/streams/stages/FromCompletionStageFactoryTest.java -------------------------------------------------------------------------------- /implementation/src/test/java/io/smallrye/reactive/streams/stages/FromIterableStageFactoryTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/implementation/src/test/java/io/smallrye/reactive/streams/stages/FromIterableStageFactoryTest.java -------------------------------------------------------------------------------- /implementation/src/test/java/io/smallrye/reactive/streams/stages/FromPublisherStageFactoryTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/implementation/src/test/java/io/smallrye/reactive/streams/stages/FromPublisherStageFactoryTest.java -------------------------------------------------------------------------------- /implementation/src/test/java/io/smallrye/reactive/streams/stages/LimitStageFactoryTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/implementation/src/test/java/io/smallrye/reactive/streams/stages/LimitStageFactoryTest.java -------------------------------------------------------------------------------- /implementation/src/test/java/io/smallrye/reactive/streams/stages/MapStageFactoryTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/implementation/src/test/java/io/smallrye/reactive/streams/stages/MapStageFactoryTest.java -------------------------------------------------------------------------------- /implementation/src/test/java/io/smallrye/reactive/streams/stages/OnCompleteStageFactoryTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/implementation/src/test/java/io/smallrye/reactive/streams/stages/OnCompleteStageFactoryTest.java -------------------------------------------------------------------------------- /implementation/src/test/java/io/smallrye/reactive/streams/stages/OnErrorResumeWithStageFactoryTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/implementation/src/test/java/io/smallrye/reactive/streams/stages/OnErrorResumeWithStageFactoryTest.java -------------------------------------------------------------------------------- /implementation/src/test/java/io/smallrye/reactive/streams/stages/OnErrorStageFactoryTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/implementation/src/test/java/io/smallrye/reactive/streams/stages/OnErrorStageFactoryTest.java -------------------------------------------------------------------------------- /implementation/src/test/java/io/smallrye/reactive/streams/stages/OnTerminateStageFactoryTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/implementation/src/test/java/io/smallrye/reactive/streams/stages/OnTerminateStageFactoryTest.java -------------------------------------------------------------------------------- /implementation/src/test/java/io/smallrye/reactive/streams/stages/PeekStageFactoryTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/implementation/src/test/java/io/smallrye/reactive/streams/stages/PeekStageFactoryTest.java -------------------------------------------------------------------------------- /implementation/src/test/java/io/smallrye/reactive/streams/stages/ProcessorStageFactoryTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/implementation/src/test/java/io/smallrye/reactive/streams/stages/ProcessorStageFactoryTest.java -------------------------------------------------------------------------------- /implementation/src/test/java/io/smallrye/reactive/streams/stages/SkipStageFactoryTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/implementation/src/test/java/io/smallrye/reactive/streams/stages/SkipStageFactoryTest.java -------------------------------------------------------------------------------- /implementation/src/test/java/io/smallrye/reactive/streams/stages/StageTestBase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/implementation/src/test/java/io/smallrye/reactive/streams/stages/StageTestBase.java -------------------------------------------------------------------------------- /implementation/src/test/java/io/smallrye/reactive/streams/stages/SubscriberStageFactoryTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/implementation/src/test/java/io/smallrye/reactive/streams/stages/SubscriberStageFactoryTest.java -------------------------------------------------------------------------------- /implementation/src/test/java/io/smallrye/reactive/streams/stages/TakeWhileStageFactoryTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/implementation/src/test/java/io/smallrye/reactive/streams/stages/TakeWhileStageFactoryTest.java -------------------------------------------------------------------------------- /implementation/src/test/java/io/smallrye/reactive/streams/utils/WrappedSubscriberTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/implementation/src/test/java/io/smallrye/reactive/streams/utils/WrappedSubscriberTest.java -------------------------------------------------------------------------------- /implementation/src/test/java/io/smallrye/reactive/streams/utils/WrappedSubscriptionTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/implementation/src/test/java/io/smallrye/reactive/streams/utils/WrappedSubscriptionTest.java -------------------------------------------------------------------------------- /implementation/src/test/java/tck/ReactiveStreamsEngineImplTck.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/implementation/src/test/java/tck/ReactiveStreamsEngineImplTck.java -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/pom.xml -------------------------------------------------------------------------------- /release/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/release/pom.xml -------------------------------------------------------------------------------- /tck/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/tck/pom.xml -------------------------------------------------------------------------------- /tck/src/test/java/io/smallrye/reactive/streams/tck/ApplicationEnhancer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/tck/src/test/java/io/smallrye/reactive/streams/tck/ApplicationEnhancer.java -------------------------------------------------------------------------------- /tck/src/test/java/io/smallrye/reactive/streams/tck/InContainerIT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/tck/src/test/java/io/smallrye/reactive/streams/tck/InContainerIT.java -------------------------------------------------------------------------------- /tck/src/test/java/io/smallrye/reactive/streams/tck/ProducerInjectionProcessor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/tck/src/test/java/io/smallrye/reactive/streams/tck/ProducerInjectionProcessor.java -------------------------------------------------------------------------------- /tck/src/test/resources/META-INF/services/org.jboss.arquillian.core.spi.LoadableExtension: -------------------------------------------------------------------------------- 1 | io.smallrye.reactive.streams.tck.ApplicationEnhancer -------------------------------------------------------------------------------- /tck/src/test/resources/log4j2-test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/tck/src/test/resources/log4j2-test.xml -------------------------------------------------------------------------------- /vertx-execution-model/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/vertx-execution-model/pom.xml -------------------------------------------------------------------------------- /vertx-execution-model/src/main/java/io/smallrye/reactive/streams/vertx/VertxExecutionModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/vertx-execution-model/src/main/java/io/smallrye/reactive/streams/vertx/VertxExecutionModel.java -------------------------------------------------------------------------------- /vertx-execution-model/src/main/resources/META-INF/services/io.smallrye.reactive.streams.spi.ExecutionModel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/vertx-execution-model/src/main/resources/META-INF/services/io.smallrye.reactive.streams.spi.ExecutionModel -------------------------------------------------------------------------------- /vertx-execution-model/src/test/java/io/smallrye/reactive/streams/stages/CollectStageFactoryTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/vertx-execution-model/src/test/java/io/smallrye/reactive/streams/stages/CollectStageFactoryTest.java -------------------------------------------------------------------------------- /vertx-execution-model/src/test/java/io/smallrye/reactive/streams/stages/ConcatStageFactoryTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/vertx-execution-model/src/test/java/io/smallrye/reactive/streams/stages/ConcatStageFactoryTest.java -------------------------------------------------------------------------------- /vertx-execution-model/src/test/java/io/smallrye/reactive/streams/stages/DistinctStageFactoryTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/vertx-execution-model/src/test/java/io/smallrye/reactive/streams/stages/DistinctStageFactoryTest.java -------------------------------------------------------------------------------- /vertx-execution-model/src/test/java/io/smallrye/reactive/streams/stages/DropWhileStageFactoryTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/vertx-execution-model/src/test/java/io/smallrye/reactive/streams/stages/DropWhileStageFactoryTest.java -------------------------------------------------------------------------------- /vertx-execution-model/src/test/java/io/smallrye/reactive/streams/stages/FailedPublisherStageFactoryTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/vertx-execution-model/src/test/java/io/smallrye/reactive/streams/stages/FailedPublisherStageFactoryTest.java -------------------------------------------------------------------------------- /vertx-execution-model/src/test/java/io/smallrye/reactive/streams/stages/FilterStageFactoryTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/vertx-execution-model/src/test/java/io/smallrye/reactive/streams/stages/FilterStageFactoryTest.java -------------------------------------------------------------------------------- /vertx-execution-model/src/test/java/io/smallrye/reactive/streams/stages/FindFirstStageFactoryTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/vertx-execution-model/src/test/java/io/smallrye/reactive/streams/stages/FindFirstStageFactoryTest.java -------------------------------------------------------------------------------- /vertx-execution-model/src/test/java/io/smallrye/reactive/streams/stages/FlatMapCompletionStageFactoryTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/vertx-execution-model/src/test/java/io/smallrye/reactive/streams/stages/FlatMapCompletionStageFactoryTest.java -------------------------------------------------------------------------------- /vertx-execution-model/src/test/java/io/smallrye/reactive/streams/stages/FlatMapIterableStageFactoryTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/vertx-execution-model/src/test/java/io/smallrye/reactive/streams/stages/FlatMapIterableStageFactoryTest.java -------------------------------------------------------------------------------- /vertx-execution-model/src/test/java/io/smallrye/reactive/streams/stages/FlatMapStageFactoryTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/vertx-execution-model/src/test/java/io/smallrye/reactive/streams/stages/FlatMapStageFactoryTest.java -------------------------------------------------------------------------------- /vertx-execution-model/src/test/java/io/smallrye/reactive/streams/stages/FromCompletionStageFactoryNullableTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/vertx-execution-model/src/test/java/io/smallrye/reactive/streams/stages/FromCompletionStageFactoryNullableTest.java -------------------------------------------------------------------------------- /vertx-execution-model/src/test/java/io/smallrye/reactive/streams/stages/FromCompletionStageFactoryTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/vertx-execution-model/src/test/java/io/smallrye/reactive/streams/stages/FromCompletionStageFactoryTest.java -------------------------------------------------------------------------------- /vertx-execution-model/src/test/java/io/smallrye/reactive/streams/stages/FromIterableStageFactoryTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/vertx-execution-model/src/test/java/io/smallrye/reactive/streams/stages/FromIterableStageFactoryTest.java -------------------------------------------------------------------------------- /vertx-execution-model/src/test/java/io/smallrye/reactive/streams/stages/FromPublisherStageFactoryTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/vertx-execution-model/src/test/java/io/smallrye/reactive/streams/stages/FromPublisherStageFactoryTest.java -------------------------------------------------------------------------------- /vertx-execution-model/src/test/java/io/smallrye/reactive/streams/stages/LimitStageFactoryTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/vertx-execution-model/src/test/java/io/smallrye/reactive/streams/stages/LimitStageFactoryTest.java -------------------------------------------------------------------------------- /vertx-execution-model/src/test/java/io/smallrye/reactive/streams/stages/MapStageFactoryTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/vertx-execution-model/src/test/java/io/smallrye/reactive/streams/stages/MapStageFactoryTest.java -------------------------------------------------------------------------------- /vertx-execution-model/src/test/java/io/smallrye/reactive/streams/stages/OnCompleteStageFactoryTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/vertx-execution-model/src/test/java/io/smallrye/reactive/streams/stages/OnCompleteStageFactoryTest.java -------------------------------------------------------------------------------- /vertx-execution-model/src/test/java/io/smallrye/reactive/streams/stages/OnErrorResumeWithStageFactoryTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/vertx-execution-model/src/test/java/io/smallrye/reactive/streams/stages/OnErrorResumeWithStageFactoryTest.java -------------------------------------------------------------------------------- /vertx-execution-model/src/test/java/io/smallrye/reactive/streams/stages/OnErrorStageFactoryTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/vertx-execution-model/src/test/java/io/smallrye/reactive/streams/stages/OnErrorStageFactoryTest.java -------------------------------------------------------------------------------- /vertx-execution-model/src/test/java/io/smallrye/reactive/streams/stages/OnTerminateStageFactoryTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/vertx-execution-model/src/test/java/io/smallrye/reactive/streams/stages/OnTerminateStageFactoryTest.java -------------------------------------------------------------------------------- /vertx-execution-model/src/test/java/io/smallrye/reactive/streams/stages/PeekStageFactoryTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/vertx-execution-model/src/test/java/io/smallrye/reactive/streams/stages/PeekStageFactoryTest.java -------------------------------------------------------------------------------- /vertx-execution-model/src/test/java/io/smallrye/reactive/streams/stages/ProcessorStageFactoryTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/vertx-execution-model/src/test/java/io/smallrye/reactive/streams/stages/ProcessorStageFactoryTest.java -------------------------------------------------------------------------------- /vertx-execution-model/src/test/java/io/smallrye/reactive/streams/stages/SkipStageFactoryTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/vertx-execution-model/src/test/java/io/smallrye/reactive/streams/stages/SkipStageFactoryTest.java -------------------------------------------------------------------------------- /vertx-execution-model/src/test/java/io/smallrye/reactive/streams/stages/StageTestBase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/vertx-execution-model/src/test/java/io/smallrye/reactive/streams/stages/StageTestBase.java -------------------------------------------------------------------------------- /vertx-execution-model/src/test/java/io/smallrye/reactive/streams/stages/SubscriberStageFactoryTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/vertx-execution-model/src/test/java/io/smallrye/reactive/streams/stages/SubscriberStageFactoryTest.java -------------------------------------------------------------------------------- /vertx-execution-model/src/test/java/io/smallrye/reactive/streams/stages/TakeWhileStageFactoryTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallrye/smallrye-reactive-streams-operators/HEAD/vertx-execution-model/src/test/java/io/smallrye/reactive/streams/stages/TakeWhileStageFactoryTest.java --------------------------------------------------------------------------------