From 96bce85c36398397e35a55b29db2734f315d3d8e Mon Sep 17 00:00:00 2001 From: Gabriel Francisco Date: Wed, 24 Apr 2024 11:31:15 -0300 Subject: [PATCH] Update README.md --- README.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 9a663ec1..ea8041e5 100644 --- a/README.md +++ b/README.md @@ -49,7 +49,11 @@ users // Since it's still Kotlin's Flow, everything leverages asynchronous non-blocking backpressure: // if the processing in the collect block is slow, the polling stage will slow down accordingly. -``` +``` + +Are you a visual learner? The code basically represents the flow below: + +![Alt text](miscellaneous/readme-sample.svg) To get to know the core module a bit further, you can refer to the [site's kdoc](https://www.river-kt.com/core/com.river.core/) or you can [check the code](https://github.com/River-Kt/river/tree/main/core/src/main/kotlin/com/river/core) directly.