blob: e1ab22c001f7a88c7909f50d884b9f258a5c7f34 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
package server;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
import org.apache.log4j.BasicConfigurator;
import org.apache.log4j.Logger;
import server.BinaryListener;
public class startServer {
/**
* @param args
*/
private static Logger log = Logger.getLogger( startServer.class );
private static List<Thread> servers = new ArrayList<>();
public static void main(String[] args) {
BasicConfigurator.configure();
log.info( new Date() + " - starting Application\n" );
Thread t;
t = new Thread(new BinaryListener());
servers.add(t);
t.start();
// Run more servers
// ...
// Wait for all servers to die
for (Thread wait : servers) {
boolean success = false;
while (!success) {
try {
wait.join();
success = true;
} catch ( InterruptedException e ) {
// Do nothing...
}
}
}
log.info( new Date()+" - all Servers shut down, exiting...\n" );
}
}
|