Open1

Redux Thunk

NyumiNyumi

チャンクとは

チャンクとは、大きな塊、ぶつ切り、大量(の)、などの意味を持つ英単語。ITの分野では、大きなデータを分割して制御情報を付加したひとまとまりの断片などのことをチャンクと呼ぶ。

IT用語辞典 - チャンク

Reduxにおけるチャンクとは

  • ディスパッチ、getStateなどのReduxのロジカルな処理を含むまとまりのこと
const thunkFunction = (dispatch, getState) => {
  // logic here that can dispatch actions or read state
}

store.dispatch(thunkFunction)