blob: 30f5a9b5f4dec1146a7a1fa734c2f86c3d6b5b01 (
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
|
/* 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 {
CHANGE_NETWORK_THROTTLING,
} = require("resource://devtools/client/shared/components/throttling/actions.js");
/**
* Network throttling middleware is responsible for
* updating/syncing currently connected backend
* according to user actions.
*/
function throttlingMiddleware(connector) {
return store => next => action => {
const res = next(action);
if (action.type === CHANGE_NETWORK_THROTTLING) {
connector.updateNetworkThrottling(action.enabled, action.profile);
}
return res;
};
}
module.exports = throttlingMiddleware;
|