summaryrefslogtreecommitdiffstats
path: root/devtools/client/netmonitor/src/actions/batching.js
blob: f3b84f950dfb5f19f4d136ac1bebe441cb08ef66 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

"use strict";

const {
  BATCH_ACTIONS,
  BATCH_ENABLE,
  BATCH_RESET,
  BATCH_FLUSH,
} = require("resource://devtools/client/netmonitor/src/constants.js");

/**
 * Process multiple actions at once as part of one dispatch, and produce only one
 * state update at the end. This action is not processed by any reducer, but by a
 * special store enhancer.
 */
function batchActions(actions) {
  return {
    type: BATCH_ACTIONS,
    actions,
  };
}

function batchEnable(enabled) {
  return {
    type: BATCH_ENABLE,
    enabled,
  };
}

function batchReset() {
  return {
    type: BATCH_RESET,
  };
}

function batchFlush() {
  return {
    type: BATCH_FLUSH,
  };
}

module.exports = {
  batchActions,
  batchEnable,
  batchReset,
  batchFlush,
};