本文整理汇总了TypeScript中embark.Events.emit方法的典型用法代码示例。如果您正苦于以下问题:TypeScript Events.emit方法的具体用法?TypeScript Events.emit怎么用?TypeScript Events.emit使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类embark.Events
的用法示例。
在下文中一共展示了Events.emit方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1:
this.registerEmbarkJs((err?: Error | null) => {
if (err) {
return this.logger.error(err);
}
this.providerReady = true;
this.events.emit("console:provider:done");
});
示例2: saveHistory
private saveHistory(cmd: string, fromIpcClient = false) {
const history = this.history;
if (fromIpcClient) {
if (history[history.length - 1] !== cmd) {
history.push(cmd);
}
this.events.emit("console:history:save", cmd);
return this.ipc.broadcast("console:history:save", cmd, true);
}
history.push(cmd);
if (this.ipc.isServer()) {
this.ipc.broadcast("console:history:save", cmd, true);
} else if (this.ipc.connected) {
this.ipc.client.emit("console:history:save", cmd);
}
if (this.fs.existsSync(dirname(this.cmdHistoryFile))) {
this.fs.writeFileSync(
this.cmdHistoryFile,
history
.slice(Math.max(0, history.length - this.cmdHistorySize()))
.reverse()
.filter((line: string) => line.trim())
.join("\n"),
);
}
}