Hands-on practice for this lecture. Write the code, see it run, understand the pattern.
1
Exercise 1 of 1
Worker Sagas — Quiz
Four questions on worker sagas and takeEvery: concurrent dispatch behavior, why yield is required in the root saga, the signal-only action pattern, and takeEvery vs takeLatest.
start here, then build the fix
1What does takeEvery(FETCH_TASKS, fetchTasksWorker) do when FETCH_TASKS is dispatched three times in quick succession?
2Why does the root saga use yield takeEvery(...) rather than just calling takeEvery(...)?
3The FETCH_TASKS action dispatched from the component carries no payload. Why?
4What is the difference between takeEvery and takeLatest?