(key: string, getRemoteValue: GetResponseAsync, updateInterval?: number)
| 30 | } |
| 31 | |
| 32 | public getFreshValue(key: string, getRemoteValue: GetResponseAsync, updateInterval?: number): Promise<TimeStampedData> { |
| 33 | return this.cachedHttp.getFreshValue(key, getRemoteValue, updateInterval); |
| 34 | } |
| 35 | |
| 36 | public getValue(key: string): string { |
| 37 | return this.storage.getValue(key); |