summaryrefslogtreecommitdiff
path: root/java/test/Ice/background/BackgroundControllerI.java
diff options
context:
space:
mode:
Diffstat (limited to 'java/test/Ice/background/BackgroundControllerI.java')
-rw-r--r--java/test/Ice/background/BackgroundControllerI.java11
1 files changed, 11 insertions, 0 deletions
diff --git a/java/test/Ice/background/BackgroundControllerI.java b/java/test/Ice/background/BackgroundControllerI.java
index 64cefee73ca..fb1a591e193 100644
--- a/java/test/Ice/background/BackgroundControllerI.java
+++ b/java/test/Ice/background/BackgroundControllerI.java
@@ -12,12 +12,14 @@ import test.Ice.background.Test._BackgroundControllerDisp;
class BackgroundControllerI extends _BackgroundControllerDisp
{
+ @Override
synchronized public void
pauseCall(String opName, Ice.Current current)
{
_pausedCalls.add(opName);
}
+ @Override
synchronized public void
resumeCall(String opName, Ice.Current current)
{
@@ -41,54 +43,63 @@ class BackgroundControllerI extends _BackgroundControllerDisp
}
}
+ @Override
public void
holdAdapter(Ice.Current current)
{
_adapter.hold();
}
+ @Override
public void
resumeAdapter(Ice.Current current)
{
_adapter.activate();
}
+ @Override
public void
initializeSocketStatus(int status, Ice.Current current)
{
_configuration.initializeSocketStatus(status);
}
+ @Override
public void
initializeException(boolean enable, Ice.Current current)
{
_configuration.initializeException(enable ? new Ice.SocketException() : null);
}
+ @Override
public void
readReady(boolean enable, Ice.Current current)
{
_configuration.readReady(enable);
}
+ @Override
public void
readException(boolean enable, Ice.Current current)
{
_configuration.readException(enable ? new Ice.SocketException() : null);
}
+ @Override
public void
writeReady(boolean enable, Ice.Current current)
{
_configuration.writeReady(enable);
}
+ @Override
public void
writeException(boolean enable, Ice.Current current)
{
_configuration.writeException(enable ? new Ice.SocketException() : null);
}
+ @Override
public void
buffered(boolean enable, Ice.Current current)
{