當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript ipc.cp.Server類代碼示例

本文整理匯總了TypeScript中vs/base/parts/ipc/node/ipc.cp.Server的典型用法代碼示例。如果您正苦於以下問題:TypeScript cp.Server類的具體用法?TypeScript cp.Server怎麽用?TypeScript cp.Server使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了cp.Server類的6個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: Server

/*---------------------------------------------------------------------------------------------
 *  Copyright (c) Microsoft Corporation. All rights reserved.
 *  Licensed under the MIT License. See License.txt in the project root for license information.
 *--------------------------------------------------------------------------------------------*/

import { Server } from 'vs/base/parts/ipc/node/ipc.cp';
import { WatcherChannel } from 'vs/workbench/services/files/node/watcher/unix/watcherIpc';
import { ChokidarWatcherService } from 'vs/workbench/services/files/node/watcher/unix/chokidarWatcherService';

const server = new Server();
const service = new ChokidarWatcherService();
const channel = new WatcherChannel(service);
server.registerChannel('watcher', channel);
開發者ID:DonJayamanne,項目名稱:vscode,代碼行數:13,代碼來源:watcherApp.ts

示例2: Server

/*---------------------------------------------------------------------------------------------
 *  Copyright (c) Microsoft Corporation. All rights reserved.
 *  Licensed under the MIT License. See License.txt in the project root for license information.
 *--------------------------------------------------------------------------------------------*/

import { Server } from 'vs/base/parts/ipc/node/ipc.cp';
import { SearchWorkerChannel } from './searchWorkerIpc';
import { SearchWorker } from './searchWorker';

const server = new Server();
const worker = new SearchWorker();
const channel = new SearchWorkerChannel(worker);
server.registerChannel('searchWorker', channel);
開發者ID:DonJayamanne,項目名稱:vscode,代碼行數:13,代碼來源:searchWorkerApp.ts

示例3: AppInsightsAppender

/*---------------------------------------------------------------------------------------------
 *  Copyright (c) Microsoft Corporation. All rights reserved.
 *  Licensed under the MIT License. See License.txt in the project root for license information.
 *--------------------------------------------------------------------------------------------*/

import { Server } from 'vs/base/parts/ipc/node/ipc.cp';
import { AppInsightsAppender } from 'vs/platform/telemetry/node/appInsightsAppender';
import { TelemetryAppenderChannel } from 'vs/platform/telemetry/common/telemetryIpc';

const appender = new AppInsightsAppender(process.argv[2], JSON.parse(process.argv[3]), process.argv[4]);
process.once('exit', () => appender.dispose());

const channel = new TelemetryAppenderChannel(appender);
const server = new Server();
server.registerChannel('telemetryAppender', channel);
開發者ID:AllureFer,項目名稱:vscode,代碼行數:15,代碼來源:telemetryApp.ts

示例4: Server

/*---------------------------------------------------------------------------------------------
 *  Copyright (c) Microsoft Corporation. All rights reserved.
 *  Licensed under the MIT License. See License.txt in the project root for license information.
 *--------------------------------------------------------------------------------------------*/

import { Server } from 'vs/base/parts/ipc/node/ipc.cp';
import { TestChannel, TestService } from './testService';

const server = new Server();
const service = new TestService();
server.registerChannel('test', new TestChannel(service));
開發者ID:DonJayamanne,項目名稱:vscode,代碼行數:11,代碼來源:testApp.ts

示例5: Server

/*---------------------------------------------------------------------------------------------
 *  Copyright (c) Microsoft Corporation. All rights reserved.
 *  Licensed under the Source EULA. See License.txt in the project root for license information.
 *--------------------------------------------------------------------------------------------*/

'use strict';

import { Server } from 'vs/base/parts/ipc/node/ipc.cp';
import { SearchChannel } from './searchIpc';
import { SearchService } from './rawSearchService';

const server = new Server();
const service = new SearchService();
const channel = new SearchChannel(service);
server.registerChannel('search', channel);
開發者ID:AlexxNica,項目名稱:sqlopsstudio,代碼行數:15,代碼來源:searchApp.ts

示例6: Server

/*---------------------------------------------------------------------------------------------
 *  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 { Server } from 'vs/base/parts/ipc/node/ipc.cp';
import { createRawGitService } from './rawGitServiceBootstrap';
import { GitChannel } from 'vs/workbench/parts/git/common/gitIpc';

const server = new Server();
const service = createRawGitService(process.argv[2], process.argv[3], process.argv[4], process.argv[5], process.argv[6]);
const channel = new GitChannel(service);
server.registerChannel('git', channel);
開發者ID:1Hgm,項目名稱:vscode,代碼行數:15,代碼來源:gitApp.ts


注:本文中的vs/base/parts/ipc/node/ipc.cp.Server類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。