ProAndroidDev

The latest posts from Android Professionals and Google Developer Experts.

Follow publication

Implement Kotlin Flow / operator

Petrus Nguyễn Thái Học
ProAndroidDev
Published in
2 min readMar 24, 2022

--

Hello Kotlin Developers, let's implement / operator for Flow. This operator is similar to of or of . You can check the documents below for more details.

is used when we have multiple s, we all of them, as soon as one of emits a //, it becomes the “winner”, others are canceled and the result will forward all events (including and events) from the “winner”.

race (source: https://rxjs.dev/api/index/function/race)
race (source: https://rxjs.dev/api/index/function/race)

https://rxjs.dev/api/index/function/race

Returns an observable that mirrors the first source observable to emit an item.

https://reactivex.io/documentation/operators/amb.html

When you pass a number of source Observables to Amb, it will pass through the emissions and notifications of exactly one of these Observables: the first one that sends a notification to Amb, either by emitting an item or sending an or notification. Amb will ignore and discard the emissions and notifications of all of the other source Observables.

Use and example

This operator is useful when you have multiple resources that provide values, for example, API resources but due to network conditions, the latency is unpredictable and varies significantly. In this case, we want to get the “fastest” value and ignore the “slower” values.

Here is an example:

Only values from the second are emitted since it starts emitting first.

Implementation

works in the following way:

  1. Collect to all source s
  2. When a new event arrives from a source , pass it down to a collector.
  3. Cancel all other s.
  4. Forward all events from the winner .

Here is the implementation of

By using “select expression”, we can select the first event that becomes available from s (https://kotlinlang.org/docs/select-expression.html#selecting-from-channels).

Bonus, we can add a variant function that accepts variable arguments and as an extension function on

Conclusion

We have already implemented operator. Using and “select expression” make the backpressure and concurrency problem a lot easier.

You can find full implementation and others operators here https://github.com/hoc081098/FlowExt, with the entire source code, the documentation, and setup info to add the library to your project.

FlowExt is a Kotlin Multiplatform library, that provides many operators and extensions to Kotlin Coroutines Flow.

Thanks for reading ❤. If you like my article, please follow me on Medium, Github and Twitter.

Sign up to discover human stories that deepen your understanding of the world.

Free

Distraction-free reading. No ads.

Organize your knowledge with lists and highlights.

Tell your story. Find your audience.

Membership

Read member-only stories

Support writers you read most

Earn money for your writing

Listen to audio narrations

Read offline with the Medium app

--

--

No responses yet

Write a response