Tagged Questions

3
votes
1answer
275 views

Beat Detection from line in

I wan't to try some beat detection algorithms from here in Java. My problem: How do I get the current audio mix from the soundcard as datasource for the algorithms?
2
votes
1answer
241 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
1answer
157 views

Java Heartbeat framework

I need to implement a heartbeat-mechanism that sends a 'touch'-message to an external service every X seconds to keep the session alive, if no other messages are sent to the service. I have looked at ...
1
vote
2answers
157 views

Implementation to create a reporting methodology to report to admin through mail

Constantly monitor a http request which if returns code 200 then no action is taken but if a 404 is returned then the administrator should be alerted via warning or mail. I wanted to know how to ...
1
vote
2answers
373 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 ...
1
vote
6answers
2k views

How can I guarantee a “stay alive” heartbeat is sent?

We have an RMI client application written in Java which needs to send periodic "stay alive" messages to a server application. We have implemented this as a separate heartbeat thread, which sends the ...