9 lines
492 B
JavaScript
9 lines
492 B
JavaScript
import RedisPubSub from '/imports/startup/server/redis2x';
|
|
import handlePresentationChange from './handlers/presentationChange';
|
|
import handlePresentationInfoReply from './handlers/presentationInfoReply';
|
|
import handlePresentationRemove from './handlers/presentationRemove';
|
|
|
|
RedisPubSub.on('SyncGetPresentationInfoRespMsg', handlePresentationInfoReply);
|
|
RedisPubSub.on('NewPresentationEvtMsg', handlePresentationChange);
|
|
RedisPubSub.on('RemovePresentationEvtMsg', handlePresentationRemove);
|