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


TypeScript xev.emit函數代碼示例

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


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

示例1: publish

function publish(channel: string, type: string, value?: any): void {
	const message = type == null ? value : value == null ?
		{ type: type } :
		{ type: type, body: value };

		ev.emit(channel, message);
}
開發者ID:ha-dai,項目名稱:Misskey,代碼行數:7,代碼來源:stream.ts

示例2: switch

	connection.on('message', async data => {
		const msg = JSON.parse(data.utf8Data);

		switch (msg.type) {
			case 'requestLog':
				ev.once('notesStatsLog:' + msg.id, statsLog => {
					connection.send(JSON.stringify({
						type: 'statsLog',
						body: statsLog
					}));
				});
				ev.emit('requestNotesStatsLog', msg.id);
				break;
		}
	});
開發者ID:ha-dai,項目名稱:Misskey,代碼行數:15,代碼來源:notes-stats.ts

示例3: tick

	async function tick() {
		const cpu = await cpuUsage();
		const usedmem = await usedMem();
		const totalmem = await totalMem();
		const disk = diskusage.checkSync(os.platform() == 'win32' ? 'c:' : '/');

		const stats = {
			cpu_usage: cpu,
			mem: {
				total: totalmem,
				used: usedmem
			},
			disk,
			os_uptime: os.uptime(),
			process_uptime: process.uptime()
		};
		ev.emit('serverStats', stats);
		log.push(stats);
		if (log.length > 50) log.shift();
	}
開發者ID:ha-dai,項目名稱:Misskey,代碼行數:20,代碼來源:server-stats.ts

示例4:

	ev.on('requestServerStatsLog', id => {
		ev.emit('serverStatsLog:' + id, log.toArray());
	});
開發者ID:ha-dai,項目名稱:Misskey,代碼行數:3,代碼來源:server-stats.ts

示例5: publish

	publish(channelName: string, message: any): void {
		this.parentEmitter.emit(channelName, message);
	}
開發者ID:Frost-Dev,項目名稱:Frost,代碼行數:3,代碼來源:XevPubSub.ts


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