diff options
Diffstat (limited to 'java/test/Ice/binding/RemoteCommunicatorI.java')
-rw-r--r-- | java/test/Ice/binding/RemoteCommunicatorI.java | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/java/test/Ice/binding/RemoteCommunicatorI.java b/java/test/Ice/binding/RemoteCommunicatorI.java new file mode 100644 index 00000000000..2d6596f2032 --- /dev/null +++ b/java/test/Ice/binding/RemoteCommunicatorI.java @@ -0,0 +1,35 @@ +// ********************************************************************** +// +// Copyright (c) 2003-2005 ZeroC, Inc. All rights reserved. +// +// This copy of Ice is licensed to you under the terms described in the +// ICE_LICENSE file included in this distribution. +// +// ********************************************************************** + +import Test.*; + +public class RemoteCommunicatorI extends _RemoteCommunicatorDisp +{ + public RemoteObjectAdapterPrx + createObjectAdapter(String name, String endpoints, Ice.Current current) + { + Ice.Communicator com = current.adapter.getCommunicator(); + com.getProperties().setProperty(name + ".ThreadPool.Size", "1"); + Ice.ObjectAdapter adapter = com.createObjectAdapterWithEndpoints(name, endpoints); + return RemoteObjectAdapterPrxHelper.uncheckedCast( + current.adapter.addWithUUID(new RemoteObjectAdapterI(adapter))); + } + + public void + deactivateObjectAdapter(RemoteObjectAdapterPrx adapter, Ice.Current current) + { + adapter.deactivate(); // Collocated call. + } + + public void + shutdown(Ice.Current current) + { + current.adapter.getCommunicator().shutdown(); + } +}; |