summaryrefslogtreecommitdiff
path: root/php/test/Ice/acm/Test.ice
diff options
context:
space:
mode:
authorMark Spruiell <mes@zeroc.com>2014-07-23 10:23:31 -0700
committerMark Spruiell <mes@zeroc.com>2014-07-23 10:23:31 -0700
commit78ceddde5c628df3ccbfb3f86eb17a59f776b92d (patch)
tree046e536a60303cdbdfa052b0b3223a0c8a0755c8 /php/test/Ice/acm/Test.ice
parentWindows 64 build failure (diff)
downloadice-78ceddde5c628df3ccbfb3f86eb17a59f776b92d.tar.bz2
ice-78ceddde5c628df3ccbfb3f86eb17a59f776b92d.tar.xz
ice-78ceddde5c628df3ccbfb3f86eb17a59f776b92d.zip
adding ACM tests for Python/Ruby/PHP
Diffstat (limited to 'php/test/Ice/acm/Test.ice')
-rw-r--r--php/test/Ice/acm/Test.ice37
1 files changed, 37 insertions, 0 deletions
diff --git a/php/test/Ice/acm/Test.ice b/php/test/Ice/acm/Test.ice
new file mode 100644
index 00000000000..3289856d9e1
--- /dev/null
+++ b/php/test/Ice/acm/Test.ice
@@ -0,0 +1,37 @@
+// **********************************************************************
+//
+// Copyright (c) 2003-2014 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.
+//
+// **********************************************************************
+
+#pragma once
+
+module Test
+{
+
+interface TestIntf
+{
+ void sleep(int seconds);
+ void sleepAndHold(int seconds);
+ void interruptSleep();
+};
+
+interface RemoteObjectAdapter
+{
+ TestIntf* getTestIntf();
+ void activate();
+ void hold();
+ void deactivate();
+};
+
+interface RemoteCommunicator
+{
+ RemoteObjectAdapter* createObjectAdapter(int acmTimeout, int close, int heartbeat);
+ void shutdown();
+};
+
+};
+