コード例 #1
0
	__exception(m) {
		if (typeof(m) !== 'object')
			m = Serialize.unserialize(m);
		console.log('__exception', m, typeof(m));
		this.currentToken.emit('exception', m);
		this.childProcess.kill();
		this.createChildProcess();
		this.setReady();
	}
コード例 #2
0
	__echo(m) {
		this.currentToken.emit('echo', Serialize.unserialize(m.message));
	}