MCPcopy
hub / github.com/dvajs/dva / process

Function process

packages/dva-core/test/effects.test.js:80–84  ·  view source on GitHub ↗
({ payload }, { put, select })

Source from the content-addressed store, hash-verified

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);
83 yield put({ type: 'dump', payload: { resolveCount: count } });
84 },
85 },
86 });
87 app.start();

Callers

nothing calls this directly

Calls 1

putFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…