Function
changeCountDelay
({ payload }, { put, call })
Source from the content-addressed store, hash-verified
| 74 | }, |
| 75 | effects: { |
| 76 | *changeCountDelay({ payload }, { put, call }) { |
| 77 | yield call(delay, 200); |
| 78 | yield put({ type: 'dump', payload: { count: payload } }); |
| 79 | }, |
| 80 | *process({ payload }, { put, select }) { |
| 81 | yield put.resolve({ type: 'changeCountDelay', payload }); |
| 82 | const count = yield select(state => state.counter.count); |
Callers
nothing calls this directly
Tested by
no test coverage detected