mirror of
https://github.com/microsoft/vscode.git
synced 2026-02-20 17:59:17 +00:00
Co-authored-by: Johannes Rieken <jrieken@microsoft.com> Co-authored-by: Alexandru Dima <alexdima@microsoft.com>
32 lines
1.4 KiB
TypeScript
32 lines
1.4 KiB
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
import { ProxyIdentifier, IRPCProtocol, Proxied } from '../../services/extensions/common/proxyIdentifier.js';
|
|
import { createDecorator } from '../../../platform/instantiation/common/instantiation.js';
|
|
|
|
export const IExtHostRpcService = createDecorator<IExtHostRpcService>('IExtHostRpcService');
|
|
|
|
export interface IExtHostRpcService extends IRPCProtocol {
|
|
readonly _serviceBrand: undefined;
|
|
}
|
|
|
|
export class ExtHostRpcService implements IExtHostRpcService {
|
|
readonly _serviceBrand: undefined;
|
|
|
|
readonly getProxy: <T>(identifier: ProxyIdentifier<T>) => Proxied<T>;
|
|
readonly set: <T, R extends T> (identifier: ProxyIdentifier<T>, instance: R) => R;
|
|
readonly dispose: () => void;
|
|
readonly assertRegistered: (identifiers: ProxyIdentifier<any>[]) => void;
|
|
readonly drain: () => Promise<void>;
|
|
|
|
constructor(rpcProtocol: IRPCProtocol) {
|
|
this.getProxy = rpcProtocol.getProxy.bind(rpcProtocol);
|
|
this.set = rpcProtocol.set.bind(rpcProtocol);
|
|
this.dispose = rpcProtocol.dispose.bind(rpcProtocol);
|
|
this.assertRegistered = rpcProtocol.assertRegistered.bind(rpcProtocol);
|
|
this.drain = rpcProtocol.drain.bind(rpcProtocol);
|
|
}
|
|
}
|