* Returns value. * @template T * @param {string} identifier the cache identifier * @param {Etag | null} etag the etag * @param {CallbackCache<T>} callback signals when the value is retrieved * @returns {void}
(identifier, etag, callback)
| 282 | * @returns {void} |
| 283 | */ |
| 284 | get(identifier, etag, callback) { |
| 285 | this._cache.get(`${this._name}|${identifier}`, etag, callback); |
| 286 | } |
| 287 | |
| 288 | /** |
| 289 | * Returns promise with the data. |
no outgoing calls
no test coverage detected