Using the Socket class in Java, I'm trying to create a network of six clients that are each connected to each other.
I've got decent idea in place so far, I think, I'm just not sure how to do this.
Basically, I've got a list of hostnames stored in a String array. I open a ssh connection to each of the machines that I'll be using, and launch my clients one by one.
The first client finds its hostname with InetAddress.getLocalHost().getHostName(), then compares this to the hostname list and figures out its NodeID:
for(i = 0; i < hostNames.length; i++){
if(localHostName == hostNames[i]){
NodeID = i;
break;
}
...
So here's the hard part for me: I would at this point connect to the client at hostNames[i]. My plan was to have a different thread for each connection for each client. How should I go about creating these threads? Should I have a thread array set up beforehand and define the threads at this point?
Thread[] connections = new Thread[]();
...
//in for loop
connections[i] = new Thread(new ConnectionThread().start(hostNames[i]));
// ConnectionThread being a tentative name for a custom class
This seems like it would be simple enough, but am I overthinking it? Oversimplifying it?
Executors.newFixedThreadPool(n)(see docs.oracle.com/javase/1.5.0/docs/api/java/util/concurrent/… for more info) – atkretsch Nov 14 '12 at 1:27