iceshrimp-legacy/src/daemons/notes-stats.ts

21 lines
422 B
TypeScript
Raw Normal View History

2018-06-08 21:14:26 +02:00
import * as childProcess from 'child_process';
import Xev from 'xev';
const ev = new Xev();
export default function() {
2018-06-18 02:54:53 +02:00
const log: any[] = [];
2018-06-08 21:14:26 +02:00
const p = childProcess.fork(__dirname + '/notes-stats-child.js');
p.on('message', stats => {
ev.emit('notesStats', stats);
log.push(stats);
if (log.length > 100) log.shift();
});
ev.on('requestNotesStatsLog', id => {
ev.emit('notesStatsLog:' + id, log);
});
}