SlideShare a Scribd company logo
Rxjava2 custom operator
Android Taipei
2018/11@Piccollage
Rxjava2 custom operator
Example: get first required element
val inputData = Observable.just(
User(1, "White Jame"),
User(2, "Blue Jame"),
User(3, "Green Jame"),
User(4, "White John"),
User(5, "Green John")
)
inputData.filter { it.name.contains("John") }
.firstElement()
.test()
.assertValues(User(4, "White John"))
Downside about compose
1. Need to always add a key word “compose”
2. Can not convert between Observable, Single, Maybe, Completable...
But we have kotlin now!!
Solution : extension function
fun <T> Observable<T>.first(predicate: (T) -> Boolean): Maybe<T> {
return this.filter(predicate)
.firstElement()
}
Pairwise
Rxjava2 custom operator
filterObservable
fun <T> Observable<Observable<T>>.filterObservable(predicateObservable:
(Observable<T>) -> Single<Boolean>): Observable<Observable<T>> {
val predicates = this.flatMap { predicateObservable(it).toObservable() }
return this.zipWith(predicates,
BiFunction { original: Observable<T>, check: Boolean ->
Pair(original, check)
})
.filter { (_, predicate) -> predicate }
.map { (observable, _) -> observable }
}
What The …...
Rxjava2 custom operator
Obs<Obs<T>>
Obs<Obs<T>> Obs<Boolean>
Obs<Boolean>>
Obs<Obs<T>>
Obs<Boolean>>
Obs<Obs<T>>
Obs<Obs<T>>
zip
filter
Source code
https://gist.github.com/hungyanbin/4cd67008d5f9b60bcb7c38dd93cdda3e

More Related Content

PDF
Elixir: the not-so-hidden path to Erlang
PDF
Боремся с NPE вместе с Kotlin, Павел Шацких СберТех
PDF
Google guava - almost everything you need to know
PDF
Devoxx 15 equals hashcode
PDF
Advanced Debugging Using Java Bytecodes
PPTX
Nice to meet Kotlin
PPTX
Pj01 4-operators and control flow
PPTX
Groovy Api Tutorial
Elixir: the not-so-hidden path to Erlang
Боремся с NPE вместе с Kotlin, Павел Шацких СберТех
Google guava - almost everything you need to know
Devoxx 15 equals hashcode
Advanced Debugging Using Java Bytecodes
Nice to meet Kotlin
Pj01 4-operators and control flow
Groovy Api Tutorial

What's hot (20)

PDF
Refactoring to Java 8 (Devoxx BE)
PDF
Google Guava for cleaner code
PDF
Madrid gug - sacando partido a las transformaciones ast de groovy
PDF
SeaJUG March 2004 - Groovy
PDF
Laziness, trampolines, monoids and other functional amenities: this is not yo...
PDF
Transaction is a monad
PDF
Pragmatic functional refactoring with java 8
PDF
The core libraries you always wanted - Google Guava
PDF
Fiber supervision in ZIO
PDF
G3 Summit 2016 - Taking Advantage of Groovy Annotations
PDF
Java Concurrency by Example
PPS
Class method
PDF
From object oriented to functional domain modeling
PDF
Google guava
PDF
An introduction to property based testing
PDF
Greach 2015 AST – Groovy Transformers: More than meets the eye!
PDF
The Ring programming language version 1.8 book - Part 37 of 202
PDF
FP in Java - Project Lambda and beyond
PDF
Twins: Object Oriented Programming and Functional Programming
PPTX
Concurrency, Scalability & Fault-tolerance 2.0 with Akka Actors & STM
Refactoring to Java 8 (Devoxx BE)
Google Guava for cleaner code
Madrid gug - sacando partido a las transformaciones ast de groovy
SeaJUG March 2004 - Groovy
Laziness, trampolines, monoids and other functional amenities: this is not yo...
Transaction is a monad
Pragmatic functional refactoring with java 8
The core libraries you always wanted - Google Guava
Fiber supervision in ZIO
G3 Summit 2016 - Taking Advantage of Groovy Annotations
Java Concurrency by Example
Class method
From object oriented to functional domain modeling
Google guava
An introduction to property based testing
Greach 2015 AST – Groovy Transformers: More than meets the eye!
The Ring programming language version 1.8 book - Part 37 of 202
FP in Java - Project Lambda and beyond
Twins: Object Oriented Programming and Functional Programming
Concurrency, Scalability & Fault-tolerance 2.0 with Akka Actors & STM
Ad

Similar to Rxjava2 custom operator (20)

PDF
Kotlin Perfomance on Android / Александр Смирнов (Splyt)
PDF
Java 8 lambda expressions
ODP
Functors, applicatives, monads
PPTX
ZIO: Powerful and Principled Functional Programming in Scala
PPT
java 8 Hands on Workshop
PDF
The Ring programming language version 1.2 book - Part 21 of 84
PDF
Java 8 - Nuts and Bold - SFEIR Benelux
PDF
EMFPath
PPTX
Improving Correctness with Types Kats Conf
PDF
Privet Kotlin (Windy City DevFest)
PDF
7 Habits For a More Functional Swift
PDF
Frege - consequently functional programming for the JVM
PPTX
Python Training
PDF
Javantura v6 - Kotlin-Java Interop - Matej Vidaković
PPT
JDK1.7 features
PDF
The Ring programming language version 1.5 book - Part 6 of 31
PDF
Swift Rocks #2: Going functional
PDF
TDC218SP | Trilha Kotlin - DSLs in a Kotlin Way
PDF
4Developers: Michał Szczepanik- Kotlin - Let’s ketchup it
PDF
The Ring programming language version 1.4.1 book - Part 9 of 31
Kotlin Perfomance on Android / Александр Смирнов (Splyt)
Java 8 lambda expressions
Functors, applicatives, monads
ZIO: Powerful and Principled Functional Programming in Scala
java 8 Hands on Workshop
The Ring programming language version 1.2 book - Part 21 of 84
Java 8 - Nuts and Bold - SFEIR Benelux
EMFPath
Improving Correctness with Types Kats Conf
Privet Kotlin (Windy City DevFest)
7 Habits For a More Functional Swift
Frege - consequently functional programming for the JVM
Python Training
Javantura v6 - Kotlin-Java Interop - Matej Vidaković
JDK1.7 features
The Ring programming language version 1.5 book - Part 6 of 31
Swift Rocks #2: Going functional
TDC218SP | Trilha Kotlin - DSLs in a Kotlin Way
4Developers: Michał Szczepanik- Kotlin - Let’s ketchup it
The Ring programming language version 1.4.1 book - Part 9 of 31
Ad

More from 彥彬 洪 (13)

PDF
Rx java testing patterns
PDF
PDF
Android material theming
PDF
Kotlin in practice
PDF
Why use dependency injection
PDF
Jsr310
PDF
ThreeTen
PDF
科特林λ學
PDF
Mvp in practice
PDF
Green dao 3.0
PDF
Android 6.0 permission change
PDF
設定android 測試環境
PDF
Green dao
Rx java testing patterns
Android material theming
Kotlin in practice
Why use dependency injection
Jsr310
ThreeTen
科特林λ學
Mvp in practice
Green dao 3.0
Android 6.0 permission change
設定android 測試環境
Green dao

Recently uploaded (20)

PDF
Audit Checklist Design Aligning with ISO, IATF, and Industry Standards — Omne...
PPTX
history of c programming in notes for students .pptx
PDF
Claude Code: Everyone is a 10x Developer - A Comprehensive AI-Powered CLI Tool
PDF
How Creative Agencies Leverage Project Management Software.pdf
PPTX
Reimagine Home Health with the Power of Agentic AI​
PDF
Why TechBuilder is the Future of Pickup and Delivery App Development (1).pdf
PDF
Internet Downloader Manager (IDM) Crack 6.42 Build 42 Updates Latest 2025
PDF
Addressing The Cult of Project Management Tools-Why Disconnected Work is Hold...
PPTX
Lecture 3: Operating Systems Introduction to Computer Hardware Systems
PPTX
Agentic AI : A Practical Guide. Undersating, Implementing and Scaling Autono...
PDF
Upgrade and Innovation Strategies for SAP ERP Customers
PPTX
Introduction to Artificial Intelligence
PDF
EN-Survey-Report-SAP-LeanIX-EA-Insights-2025.pdf
PPTX
Agentic AI Use Case- Contract Lifecycle Management (CLM).pptx
PDF
Nekopoi APK 2025 free lastest update
PDF
Navsoft: AI-Powered Business Solutions & Custom Software Development
PPTX
Transform Your Business with a Software ERP System
PPTX
VVF-Customer-Presentation2025-Ver1.9.pptx
PDF
Flood Susceptibility Mapping Using Image-Based 2D-CNN Deep Learnin. Overview ...
PPTX
CHAPTER 2 - PM Management and IT Context
Audit Checklist Design Aligning with ISO, IATF, and Industry Standards — Omne...
history of c programming in notes for students .pptx
Claude Code: Everyone is a 10x Developer - A Comprehensive AI-Powered CLI Tool
How Creative Agencies Leverage Project Management Software.pdf
Reimagine Home Health with the Power of Agentic AI​
Why TechBuilder is the Future of Pickup and Delivery App Development (1).pdf
Internet Downloader Manager (IDM) Crack 6.42 Build 42 Updates Latest 2025
Addressing The Cult of Project Management Tools-Why Disconnected Work is Hold...
Lecture 3: Operating Systems Introduction to Computer Hardware Systems
Agentic AI : A Practical Guide. Undersating, Implementing and Scaling Autono...
Upgrade and Innovation Strategies for SAP ERP Customers
Introduction to Artificial Intelligence
EN-Survey-Report-SAP-LeanIX-EA-Insights-2025.pdf
Agentic AI Use Case- Contract Lifecycle Management (CLM).pptx
Nekopoi APK 2025 free lastest update
Navsoft: AI-Powered Business Solutions & Custom Software Development
Transform Your Business with a Software ERP System
VVF-Customer-Presentation2025-Ver1.9.pptx
Flood Susceptibility Mapping Using Image-Based 2D-CNN Deep Learnin. Overview ...
CHAPTER 2 - PM Management and IT Context

Rxjava2 custom operator