From 18692665357b1053cad6e7f523a0117f9a6eea36 Mon Sep 17 00:00:00 2001 From: Felix Angelov Date: Mon, 29 Apr 2024 22:34:43 -0500 Subject: [PATCH] chore: Update bloc-concepts.mdx --- docs/src/content/docs/bloc-concepts.mdx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/docs/src/content/docs/bloc-concepts.mdx b/docs/src/content/docs/bloc-concepts.mdx index 286084e54e0..276022b7965 100644 --- a/docs/src/content/docs/bloc-concepts.mdx +++ b/docs/src/content/docs/bloc-concepts.mdx @@ -422,7 +422,11 @@ This tells us that the user was logged out but it doesn't explain why which migh #### Advanced Event Transformations -Another area in which `Bloc` excels over `Cubit` is when we need to take advantage of reactive operators such as `buffer`, `debounceTime`, `throttle`, etc. (using the [`package:rxdart`](https://pub.dev/packages/rxdart) +Another area in which `Bloc` excels over `Cubit` is when we need to take advantage of reactive operators such as `buffer`, `debounceTime`, `throttle`, etc. + +:::tip +See [`package:stream_transform`](https://pub.dev/packages/stream_transform) and [`package:rxdart`](https://pub.dev/packages/rxdart) for stream transformers. +::: `Bloc` has an event sink that allows us to control and transform the incoming flow of events.