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


TypeScript event.fromEventEmitter函數代碼示例

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


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

示例1: mapEvent

		return mapEvent(onHello, webContents => {
			const onMessage = createScopedOnMessageEvent(webContents.getId());
			const protocol = new Protocol(webContents, onMessage);
			const onDidClientDisconnect = fromEventEmitter<void>(webContents, 'destroyed');

			return { protocol, onDidClientDisconnect };
		});
開發者ID:Chan-PH,項目名稱:vscode,代碼行數:7,代碼來源:ipc.electron-main.ts

示例2: constructor

	constructor() {
		super({
			send: r => { try { process.send(r); } catch (e) { /* not much to do */ } },
			onMessage: fromEventEmitter(process, 'message', msg => msg)
		});

		process.once('disconnect', () => this.dispose());
	}
開發者ID:asotog,項目名稱:vscode,代碼行數:8,代碼來源:ipc.cp.ts

示例3: getOnDidClientConnect

	private static getOnDidClientConnect(): Event<ClientConnectionEvent> {
		const onHello = fromEventEmitter<WebContents>(ipcMain, 'ipc:hello', ({ sender }) => sender);

		return mapEvent(onHello, webContents => {
			const onMessage = createScopedOnMessageEvent(webContents.getId());
			const protocol = new Protocol(webContents, onMessage);
			const onDidClientDisconnect = fromEventEmitter<void>(webContents, 'destroyed');

			return { protocol, onDidClientDisconnect };
		});
	}
開發者ID:Chan-PH,項目名稱:vscode,代碼行數:11,代碼來源:ipc.electron-main.ts

示例4: constructor

	constructor() {
		const rawOnOpenUrl = fromEventEmitter(app, 'open-url', (event: Electron.Event, url: string) => ({ event, url }));

		const uriEvent = mapEvent(rawOnOpenUrl, ({ event, url }) => {
			event.preventDefault();

			try {
				return URI.parse(url);
			} catch(e) {
				return null;
			}
		});

		this.onOpenURL = filterEvent(uriEvent, uri => !!uri);

		app.setAsDefaultProtocolClient(product.urlProtocol);
	}
開發者ID:GYGit,項目名稱:vscode,代碼行數:17,代碼來源:urlService.ts

示例5: client

	private get client(): IPCClient {
		if (!this._client) {
			const args = this.options && this.options.args ? this.options.args : [];
			const forkOpts = Object.create(null);

			forkOpts.env = assign(clone(process.env), { 'VSCODE_PARENT_PID': String(process.pid) });

			if (this.options && this.options.env) {
				forkOpts.env = assign(forkOpts.env, this.options.env);
			}

			if (this.options && typeof this.options.debug === 'number') {
				forkOpts.execArgv = ['--nolazy', '--debug=' + this.options.debug];
			}

			if (this.options && typeof this.options.debugBrk === 'number') {
				forkOpts.execArgv = ['--nolazy', '--debug-brk=' + this.options.debugBrk];
			}

			this.child = fork(this.modulePath, args, forkOpts);

			const onMessageEmitter = new Emitter<any>();
			const onRawMessage = fromEventEmitter(this.child, 'message', msg => msg);

			onRawMessage(msg => {
				// Handle console logs specially
				if (msg && msg.type === '__$console') {
					let args = ['%c[IPC Library: ' + this.options.serverName + ']', 'color: darkgreen'];
					try {
						const parsed = JSON.parse(msg.arguments);
						args = args.concat(Object.getOwnPropertyNames(parsed).map(o => parsed[o]));
					} catch (error) {
						args.push(msg.arguments);
					}

					console[msg.severity].apply(console, args);
					return null;
				}

				// Anything else goes to the outside
				else {
					onMessageEmitter.fire(msg);
				}
			});

			const send = r => this.child && this.child.connected && this.child.send(r);
			const onMessage = onMessageEmitter.event;
			const protocol = { send, onMessage };

			this._client = new IPCClient(protocol);

			const onExit = () => this.disposeClient();
			process.once('exit', onExit);

			this.child.on('error', err => console.warn('IPC "' + this.options.serverName + '" errored with ' + err));

			this.child.on('exit', (code: any, signal: any) => {
				process.removeListener('exit', onExit);

				if (this.activeRequests) {
					this.activeRequests.forEach(req => req.cancel());
					this.activeRequests = [];
				}

				if (code && signal !== 'SIGTERM') {
					console.warn('IPC "' + this.options.serverName + '" crashed with exit code ' + code);
					this.disposeDelayer.cancel();
					this.disposeClient();
				}
			});
		}

		return this._client;
	}
開發者ID:asotog,項目名稱:vscode,代碼行數:74,代碼來源:ipc.cp.ts

示例6: createProtocol

	private static createProtocol(): Protocol {
		const onMessage = fromEventEmitter<string>(ipcRenderer, 'ipc:message', (_, message) => message);
		ipcRenderer.send('ipc:hello');
		return new Protocol(ipcRenderer, onMessage);
	}
開發者ID:Chan-PH,項目名稱:vscode,代碼行數:5,代碼來源:ipc.electron-browser.ts

示例7: createScopedOnMessageEvent

function createScopedOnMessageEvent(senderId: number): Event<any> {
	const onMessage = fromEventEmitter<IIPCEvent>(ipcMain, 'ipc:message', (event, message) => ({ event, message }));
	const onMessageFromSender = filterEvent(onMessage, ({ event }) => event.sender.getId() === senderId);
	return mapEvent(onMessageFromSender, ({ message }) => message);
}
開發者ID:Chan-PH,項目名稱:vscode,代碼行數:5,代碼來源:ipc.electron-main.ts


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