DeepFrontend
Learning Paths
Practice
System Design & DS
Design Studio
Data Structures Curriculum
Real-World Case Studies
Careers
Job Board
Resume Builder
Blog
Sign in
Search
⌘K
Go Pro
Loading compiler resources...
Redux Ecosystem Quiz Practice
Active Recall Drill Session
← Exit Session
Question 1 of 1
hard
Redux Ecosystem
In the minimal takeLatest implementation sketch, why does the watcher use fork() rather than call() to start the worker saga?
A
fork() and call() are identical for this purpose
B
fork() starts the worker WITHOUT blocking the watcher loop, so the watcher can immediately go back to waiting for the NEXT matching action while the worker runs in the background
C
call() doesn't work with worker sagas
D
fork() is required by JavaScript syntax for generator functions
Check Answer