Skip to content

Commit

Permalink
chore: Update bloc-concepts.mdx
Browse files Browse the repository at this point in the history
  • Loading branch information
felangel authored Apr 30, 2024
1 parent bc8c0fb commit 1869266
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion docs/src/content/docs/bloc-concepts.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down

0 comments on commit 1869266

Please sign in to comment.