在 react-native 应用程序中,我想使用 InteractionManager 中的 redux-saga

InteractionManager.runAfterInteractions(() => {
  // ...long-running synchronous task...
});

是否可以 ?如何使用它 ?

最佳答案

InteractionManager.runAfterInteractions() 返回一个 promise,因此您可以在具有 call 效果的 Saga 中使用它:

yield call(InteractionManager.runAfterInteractions)

关于reactjs - 使用 redux-saga 中的 InteractionManager,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/52060241/

10-11 14:13