diff options
author | Mark Spruiell <mes@zeroc.com> | 2005-05-06 22:44:24 +0000 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2005-05-06 22:44:24 +0000 |
commit | 2fa2ed05d448c9409b52cb65ab24e3d35d654f8f (patch) | |
tree | ecfb10ed7502bfb167a8409841a2958222fd923b /java/demo/Ice/throughput/Client.java | |
parent | Fixed bug where .bat couldn't be executed by IcePack (diff) | |
download | ice-2fa2ed05d448c9409b52cb65ab24e3d35d654f8f.tar.bz2 ice-2fa2ed05d448c9409b52cb65ab24e3d35d654f8f.tar.xz ice-2fa2ed05d448c9409b52cb65ab24e3d35d654f8f.zip |
fix for bug 235
Diffstat (limited to 'java/demo/Ice/throughput/Client.java')
-rw-r--r-- | java/demo/Ice/throughput/Client.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/java/demo/Ice/throughput/Client.java b/java/demo/Ice/throughput/Client.java index 30e59d4e538..3a6eac769a9 100644 --- a/java/demo/Ice/throughput/Client.java +++ b/java/demo/Ice/throughput/Client.java @@ -88,6 +88,9 @@ public class Client char currentType = '1'; int seqSize = ByteSeqSize.value; + // Initial ping to setup the connection. + throughput.ice_ping(); + String line = null; do { @@ -101,9 +104,6 @@ public class Client break; } - // Initial ping to setup the connection. - throughput.ice_ping(); - long tmsec = System.currentTimeMillis(); final int repetitions = 100; |