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


TypeScript service.net.Server類代碼示例

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


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

示例1:

	app.on('will-quit', () => {
		env.log('App#dispose: deleting running instance handle');

		if (ipcServer) {
			ipcServer.dispose();
			ipcServer = null;
		}

		sharedProcess.kill();
	});
開發者ID:gaoxiaojun,項目名稱:vscode,代碼行數:10,代碼來源:main.ts

示例2: main

function main(server: Server, initData: IInitData): void {

	const eventService = new EventService();
	const contextService = new WorkspaceContextService(eventService, null, initData.configuration, initData.contextServiceOptions);
	const extensionService = new ExtensionsService(contextService);

	server.registerService('ExtensionService', extensionService);

	// eventually clean up old extensions
	setTimeout(() => extensionService.removeDeprecatedExtensions(), 5000);
}
開發者ID:1833183060,項目名稱:vscode,代碼行數:11,代碼來源:sharedProcessMain.ts

示例3: main

function main(server: Server, initData: IInitData): void {
	const eventService = new EventService();
	const contextService = new WorkspaceContextService(eventService, null, initData.configuration, initData.contextServiceOptions);
	const configurationService = new ConfigurationService(contextService, eventService);
	const requestService = new RequestService(contextService, configurationService);

	const instantiationService = createInstantiationService();
	instantiationService.addSingleton(IEventService, eventService);
	instantiationService.addSingleton(IWorkspaceContextService, contextService);
	instantiationService.addSingleton(IConfigurationService, configurationService);
	instantiationService.addSingleton(IRequestService, requestService);

	instantiationService.addSingleton(IExtensionsService, new SyncDescriptor(ExtensionsService));
	server.registerService('ExtensionService', instantiationService.getInstance(IExtensionsService));
}
開發者ID:inspiredjw,項目名稱:VisualStudioCode,代碼行數:15,代碼來源:sharedProcessMain.ts

示例4: main

function main(ipcServer: Server, userEnv: IEnv): void {
	env.log('### VSCode main.js ###');
	env.log(env.appRoot, env.cliArgs);

	// Register IPC services
	ipcServer.registerService('LaunchService', new LaunchService());
	ipcServer.registerService('GitAskpassService', new GitAskpassService());

	// Used by sub processes to communicate back to the main instance
	process.env['VSCODE_PID'] = '' + process.pid;
	process.env['VSCODE_IPC_HOOK'] = env.mainIPCHandle;
	process.env['VSCODE_SHARED_IPC_HOOK'] = env.sharedIPCHandle;

	// Spawn shared process
	const sharedProcess = spawnSharedProcess();

	// Make sure we associate the program with the app user model id
	// This will help Windows to associate the running program with
	// any shortcut that is pinned to the taskbar and prevent showing
	// two icons in the taskbar for the same app.
	if (platform.isWindows) {
		app.setAppUserModelId('Microsoft.VisualStudioCode');
	}

	// Set programStart in the global scope
	global.programStart = env.cliArgs.programStart;

	// Dispose on app quit
	app.on('will-quit', () => {
		env.log('App#dispose: deleting running instance handle');

		if (ipcServer) {
			ipcServer.dispose();
			ipcServer = null;
		}

		sharedProcess.kill();
	});

	// Lifecycle
	lifecycle.manager.ready();

	// Load settings
	settings.manager.load();

	// Propagate to clients
	windows.manager.ready(userEnv);

	// Install Menu
	menu.manager.ready();

	// Install Tasks
	if (platform.isWindows && env.isBuilt) {
		app.setUserTasks([
			{
				title: nls.localize('newWindow', "New Window"),
				program: process.execPath,
				arguments: '-n', // force new window
				iconPath: process.execPath,
				iconIndex: 0
			}
		]);
	}

	// Setup auto update
	UpdateManager.initialize();

	// Open our first window
	if (env.cliArgs.openNewWindow) {
		windows.manager.open({ cli: env.cliArgs, forceNewWindow: true, forceEmpty: true }); // empty window if "-n" was used
	} else if (global.macOpenFiles && global.macOpenFiles.length && (!env.cliArgs.pathArguments || !env.cliArgs.pathArguments.length)) {
		windows.manager.open({ cli: env.cliArgs, pathsToOpen: global.macOpenFiles }); // mac: open-file event received on startup
	} else {
		windows.manager.open({ cli: env.cliArgs }); // default: read paths from cli
	}
}
開發者ID:gaoxiaojun,項目名稱:vscode,代碼行數:76,代碼來源:main.ts


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