Searched defs:totalConn (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jdk/src/solaris/demo/jni/Poller/
H A DClient.java52 private static int totalConn =10; field in class:Client
70 totalConn = java.lang.Integer.valueOf(args[0]).intValue();
77 if (totalConn <= 0 || totalConn > MAXCONN) {
82 System.out.println("Using " + totalConn + " connections for sending " +
91 ctrlStream.println(totalConn);
93 while (connections < totalConn ) {
105 int idx = java.lang.Math.abs(rand.nextInt()) % totalConn;

Completed in 29 milliseconds