diff options
author | Mark Spruiell <mes@zeroc.com> | 2014-05-29 11:06:44 -0700 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2014-05-29 11:06:44 -0700 |
commit | 3cfd324cdcc65d2acbc7536f1652d44f66a0e896 (patch) | |
tree | 44613394c5b9c6c6eb0ec8b41e110002a58d60ea /java/test/Ice/background/Configuration.java | |
parent | Fixed Python throughput demo config (diff) | |
download | ice-3cfd324cdcc65d2acbc7536f1652d44f66a0e896.tar.bz2 ice-3cfd324cdcc65d2acbc7536f1652d44f66a0e896.tar.xz ice-3cfd324cdcc65d2acbc7536f1652d44f66a0e896.zip |
porting C++ transport changes to Java
Diffstat (limited to 'java/test/Ice/background/Configuration.java')
-rw-r--r-- | java/test/Ice/background/Configuration.java | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/java/test/Ice/background/Configuration.java b/java/test/Ice/background/Configuration.java index 15e7b37e58c..befe01738fc 100644 --- a/java/test/Ice/background/Configuration.java +++ b/java/test/Ice/background/Configuration.java @@ -143,6 +143,18 @@ public final class Configuration } } + public synchronized void + buffered(boolean b) + { + _buffered = b; + } + + public synchronized boolean + buffered() + { + return _buffered; + } + private Ice.LocalException _connectorsException; private Ice.LocalException _connectException; private int _initializeSocketStatus; @@ -152,4 +164,5 @@ public final class Configuration private Ice.LocalException _readException; private int _writeReadyCount; private Ice.LocalException _writeException; + private boolean _buffered; } |