* Processes the provided data. * @template T * @param {T} data the value to store * @param {CallbackCache<void>} callback signals when the value is stored * @returns {void}
(data, callback)
| 83 | * @returns {void} |
| 84 | */ |
| 85 | store(data, callback) { |
| 86 | asyncLib.each( |
| 87 | this._items, |
| 88 | (item, callback) => item.store(data, callback), |
| 89 | callback |
| 90 | ); |
| 91 | } |
| 92 | |
| 93 | /** |
| 94 | * Stores the provided data. |
no test coverage detected