Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/accso/reactive-streams-examples
Reactive-Streams examples
https://github.com/accso/reactive-streams-examples
Last synced: about 2 months ago
JSON representation
Reactive-Streams examples
- Host: GitHub
- URL: https://github.com/accso/reactive-streams-examples
- Owner: accso
- Created: 2015-07-31T13:05:45.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2024-04-25T11:38:18.000Z (8 months ago)
- Last Synced: 2024-04-25T12:40:54.790Z (8 months ago)
- Language: Java
- Size: 6.84 KB
- Stars: 1
- Watchers: 10
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Examples Reactive Streams
=========================Examples for Akka Streams.
The project akka-streams contains examples in Akka Streams as one implementation of Reactive Streams. The examples are written in Java.
The project also contains a maven pom. Each class contains a main method and can therefore be run directly.## ReactiveStreamsAkka
This is a "Hello World" stream example (well, not hello world this time, but processing a very simple bounded stream). It shows the basic concepts of Akka Streams: Source, Sink and Materializer.## ReactiveStreamsAkkaWithBuffer
This shows back pressure and buffers.## ReactiveStreamsAkkaCustomSubscriber
This shows the interoperability of different Reactive Streams implementations. In the example, we use our own very simple demo implementation of a Subscriber.