Tagged Questions
0
votes
1answer
44 views
SocketIO broadcasting too fast
I would like to broadcast a single message to every client every second (think about it as custom heartbeat mechanism).
So the NodeJS app is started, sockets are created and when I connect from the ...
0
votes
0answers
55 views
Java, android, checking connection (HearBeat) and two way independent communication
I have tried to create connection thread in my android application. But I stuck on protect my application to avoid connection errors. I've created 3 threads:
for reading data from socket ...
1
vote
1answer
454 views
java heartbeat implementation for a large number of clients
I've built a server application in java, where clients can connect . I've implemented a heartbeat system where the client is sending every x seconds a small message.
On the server side I save in a ...
3
votes
1answer
1k views
How can 2 threads communicate each other?
Thread A is summing up data passed from 10 clients.
while(true){
Socket clientfd= server.accept ();
BufferedReader message = new BufferedReader(new InputStreamReader ...
1
vote
2answers
806 views
Good timeout for heartbeating proto using TCP - Java Sockets
Im implementing my own proto in Java, it will use a heartbeat over a TCP connection that I also use to transfer messages and files.
For the client I am using blocking socket I/O.
So here is how Im ...
4
votes
5answers
4k views
What is the best way to implement a heartbeat in C++ to check for socket connectivity?
Hey gang. I have just written a client and server in C++ using sys/socket. I need to handle a situation where the client is still active but the server is down. One suggested way to do this is to ...