var CometIO = function(){ new EventEmitter().apply(this); this.url = "<%= cometio_url %>"; this.session = null; var self = this; this.push = function(type, data){ $.ajax( { url : self.url, data : {type : type, data : data, session : self.session}, success : function(data){ }, error : function(req, stat, e){ self.emit("error", "CometIO push error"); }, complete : function(e){ }, type : "POST", dataType : "json", timeout : 10000 } ); }; this.connect = function(){ self.on("__session_id", function(session){ self.session = session; self.emit("connect", self.session); }); self.get(); return self; }; this.get = function(){ $.ajax( { url : self.url, data : {session : self.session}, success : function(data){ if(data){ self.emit(data.type, data.data); } self.get(); }, error : function(req, stat, e){ self.emit("error", "CometIO get error"); setTimeout(self.get, 10000); }, complete : function(e){ }, type : "GET", dataType : "json", timeout : 60000 } ); }; };