0
votes
1answer
227 views

Speed Up Jquery heartbeats

I'm a pretty new programmer who made an application that sends out a heartbeat every 3 seconds to a php page and returns a value, the value of which decides which form elements to display. I've been ...
1
vote
1answer
196 views

Heartbeat monitor and unit testing it in javascript - how to?

I have a 'service module' that listens for periodic heartbeats (over socket.io) and then if a heartbeat is missed publishes an event on an event bus (Backbone.Events). Also if the heart beat resumes ...
1
vote
2answers
1k views

“Heartbeats” from client to server in PHP/JS

I am trying create a small web application that allows a user to "login" and "logout." What I am currently having a problem with is allowing the client to send constant "heartbeats" or messages to the ...
3
votes
3answers
293 views

Javascript: two connections per client?

I'm working on an application which implements longpolling because I want the user to receive notifications as soon as they arrive. I have this part working, but I also need to extend this with a ...
0
votes
1answer
782 views

What is AJAX HeartBeat and what is the difference between it and setInterval

I want to know what is exactly AJAX heartbeat pattern and what is the difference between it and jquery setInterval Because im making an AJAX chat and I don't want to pull the data every 15 seconds I ...
1
vote
4answers
6k views

setTimeOut() is not working with AJAX

In my application i want to send something to the server after some time. I have implemented it using AJAX. But it works for the first time but not doing it recursively. I have used setTimeOut() for ...