summaryrefslogtreecommitdiff
path: root/plugins/Meteor/meteorupdater.js
blob: 2e688336f1d19624590d47ddeac6f65117907e2f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// update the local timeline from a Meteor server
//

var MeteorUpdater = function()
{
     return {

          init: function(server, port, timeline)
          {
               Meteor.callbacks["process"] = function(data) {
                    RealtimeUpdate.receive(JSON.parse(data));
               };

               Meteor.host = server;
               Meteor.port = port;
               Meteor.joinChannel(timeline, 0);
               Meteor.connect();
          }
     }
}();