mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-25 11:08:51 +01:00
25 lines
984 B
TypeScript
25 lines
984 B
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
'use strict';
|
|
|
|
import { TPromise } from 'vs/base/common/winjs.base';
|
|
import { MainContext, MainThreadStorageShape, IMainContext } from './extHost.protocol';
|
|
|
|
export class ExtHostStorage {
|
|
|
|
private _proxy: MainThreadStorageShape;
|
|
|
|
constructor(mainContext: IMainContext) {
|
|
this._proxy = mainContext.get(MainContext.MainThreadStorage);
|
|
}
|
|
|
|
getValue<T>(shared: boolean, key: string, defaultValue?: T): TPromise<T> {
|
|
return this._proxy.$getValue<T>(shared, key).then(value => value || defaultValue);
|
|
}
|
|
|
|
setValue(shared: boolean, key: string, value: any): TPromise<void> {
|
|
return this._proxy.$setValue(shared, key, value);
|
|
}
|
|
} |