SlideShare a Scribd company logo
Functional Reactive
Programming. What
does it solve? Does it
solve things? Let’s find
out!
Netta Bondy
Netta Bondy
Senior FE Engineer @ Tikal
Co-founder @ Baot
https://medium.com/@NettaB
@_bondit_
Functional Reactive Programming. What does it solve? Does it solve things? Let's find out!
What is Reactive Programming?
Programming with Streams (Observables)
What is So Great about Reactive
Programming?
● Declerative representation of values changing over time
● Code reflects app behavior
● Separation of concerns - emitters vs. subscribers
Functional Reactive Programming. What does it solve? Does it solve things? Let's find out!
Reactive Programming
Functional-Reactive Programming
O
O
O
O
O O
Functional Reactive Programming. What does it solve? Does it solve things? Let's find out!
The Problems
https://overreacted.io/the-elements-of-ui-engineering/
- Consistency
- Entropy
- Responsiveness
- Abstraction
The Problems
Consistency
click
!isLiked
isLikedmap
Consistency
isLiked
POST
map
response
comp compcomp
Functional Reactive Programming. What does it solve? Does it solve things? Let's find out!
Observable of observables
Switching
switchMap
O O
switchMap
O O
response1
response2
response2
Entropy - Consecutive Requests
isLiked
POST
switchMap
response
comp compcomp
Responsiveness - Optimistic Updates
isLiked
POSTswitchMap
response
comp compcomp
merge
Abstraction
isLiked
POSTswitchMap
response
comp compcomp
merge
Abstraction
pipe(
switchMap(makeRequest),
merge(isLiked)
)
The price
● Learning curve
● Commitment
● Architecture
Functional Reactive Programming. What does it solve? Does it solve things? Let's find out!
Resources:
● This StackOverflow discussion, and particularly this answer
by Conal Elliot
● This excellent practical guide by Andres Staltz
● The documentation of Rx (not RxJS)
● A sample app built in FRP
Thank
you
@_bondit_

More Related Content

PDF
Functional Reactive Programming - What does it solve? Does it solve things? L...
PDF
What's Missing in Language Workbenches
PPTX
Reactで話題のRecoilを使ってみた
PDF
SOLID Design principles
PPTX
Reading_0413_var_Transformers.pptx
PDF
Introduction to Unit Testing
PDF
ReactiveCocoa - Functional Reactive Programming concepts in iOS
Functional Reactive Programming - What does it solve? Does it solve things? L...
What's Missing in Language Workbenches
Reactで話題のRecoilを使ってみた
SOLID Design principles
Reading_0413_var_Transformers.pptx
Introduction to Unit Testing
ReactiveCocoa - Functional Reactive Programming concepts in iOS

Similar to Functional Reactive Programming. What does it solve? Does it solve things? Let's find out! (20)

PDF
From User Action to Framework Reaction
PDF
Reactive systems
PDF
From User Action to Framework Reaction
PPT
Architecting for Change: An Agile Approach
PPTX
Open Backscatter Toolchain (OpenBST) Project - A Community-vetted Workflow fo...
PPTX
Reactive Programming on Android - RxAndroid - RxJava
PPTX
Introduction to react native with redux
PDF
Reactive Java Robotics and IoT 2016
PDF
Reactive Java Robotics IoT - jPrime 2016
PPTX
Desktop Apps in a Javascript World - Electron
PPTX
Modern app development with Jetpack Compose.pptx
PDF
NGRX Apps in Depth
PPTX
Building Realtime Mobile Apps with React Native and Elixir
DOCX
Introduction to programming
PDF
Moving towards Reactive Programming
ODP
Geecon09: SOLID Design Principles
PDF
React & ES6 Intro
PPTX
Reactive cocoa 101
PPTX
theory-slides-for react for beginners.pptx
PDF
SOLID principles
From User Action to Framework Reaction
Reactive systems
From User Action to Framework Reaction
Architecting for Change: An Agile Approach
Open Backscatter Toolchain (OpenBST) Project - A Community-vetted Workflow fo...
Reactive Programming on Android - RxAndroid - RxJava
Introduction to react native with redux
Reactive Java Robotics and IoT 2016
Reactive Java Robotics IoT - jPrime 2016
Desktop Apps in a Javascript World - Electron
Modern app development with Jetpack Compose.pptx
NGRX Apps in Depth
Building Realtime Mobile Apps with React Native and Elixir
Introduction to programming
Moving towards Reactive Programming
Geecon09: SOLID Design Principles
React & ES6 Intro
Reactive cocoa 101
theory-slides-for react for beginners.pptx
SOLID principles
Ad

Recently uploaded (20)

PPTX
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
PDF
Mobile App Security Testing_ A Comprehensive Guide.pdf
PPT
“AI and Expert System Decision Support & Business Intelligence Systems”
PPTX
Big Data Technologies - Introduction.pptx
PDF
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
PDF
Chapter 3 Spatial Domain Image Processing.pdf
PDF
Dropbox Q2 2025 Financial Results & Investor Presentation
PPTX
Digital-Transformation-Roadmap-for-Companies.pptx
PDF
Network Security Unit 5.pdf for BCA BBA.
PDF
Encapsulation_ Review paper, used for researhc scholars
PDF
KodekX | Application Modernization Development
PDF
Encapsulation theory and applications.pdf
PPTX
20250228 LYD VKU AI Blended-Learning.pptx
PDF
MIND Revenue Release Quarter 2 2025 Press Release
PPTX
sap open course for s4hana steps from ECC to s4
PPTX
Understanding_Digital_Forensics_Presentation.pptx
PDF
Review of recent advances in non-invasive hemoglobin estimation
PDF
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
PDF
Machine learning based COVID-19 study performance prediction
PPTX
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
Mobile App Security Testing_ A Comprehensive Guide.pdf
“AI and Expert System Decision Support & Business Intelligence Systems”
Big Data Technologies - Introduction.pptx
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
Chapter 3 Spatial Domain Image Processing.pdf
Dropbox Q2 2025 Financial Results & Investor Presentation
Digital-Transformation-Roadmap-for-Companies.pptx
Network Security Unit 5.pdf for BCA BBA.
Encapsulation_ Review paper, used for researhc scholars
KodekX | Application Modernization Development
Encapsulation theory and applications.pdf
20250228 LYD VKU AI Blended-Learning.pptx
MIND Revenue Release Quarter 2 2025 Press Release
sap open course for s4hana steps from ECC to s4
Understanding_Digital_Forensics_Presentation.pptx
Review of recent advances in non-invasive hemoglobin estimation
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
Machine learning based COVID-19 study performance prediction
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
Ad

Functional Reactive Programming. What does it solve? Does it solve things? Let's find out!