11 lines
519 B
JavaScript
11 lines
519 B
JavaScript
import RedisPubSub from '/imports/startup/server/redis2x';
|
|
import handlePollStarted from './handlers/pollStarted';
|
|
import handlePollStopped from './handlers/pollStopped';
|
|
import handlePollPublished from './handlers/pollPublished';
|
|
import handleUserVoted from './handlers/userVoted';
|
|
|
|
RedisPubSub.on('PollShowResultEvtMsg', handlePollPublished);
|
|
RedisPubSub.on('PollStartedEvtMsg', handlePollStarted);
|
|
RedisPubSub.on('PollStoppedEvtMsg', handlePollStopped);
|
|
RedisPubSub.on('UserRespondedToPollEvtMsg', handleUserVoted);
|