bigbluebutton-Github/bigbluebutton-html5/imports/api/annotations/server/eventHandlers.js

11 lines
606 B
JavaScript
Raw Normal View History

import RedisPubSub from '/imports/startup/server/redis';
2016-11-19 01:35:28 +08:00
import handleWhiteboardCleared from './handlers/whiteboardCleared';
import handleWhiteboardUndo from './handlers/whiteboardUndo';
import handleWhiteboardSend from './handlers/whiteboardSend';
import handleWhiteboardAnnotations from './handlers/whiteboardAnnotations';
2016-11-19 01:35:28 +08:00
RedisPubSub.on('ClearWhiteboardEvtMsg', handleWhiteboardCleared);
RedisPubSub.on('UndoWhiteboardEvtMsg', handleWhiteboardUndo);
RedisPubSub.on('SendWhiteboardAnnotationEvtMsg', handleWhiteboardSend);
RedisPubSub.on('GetWhiteboardAnnotationsRespMsg', handleWhiteboardAnnotations);