diff options
Diffstat (limited to 'python/test/Ice/thread/Test.ice')
-rw-r--r-- | python/test/Ice/thread/Test.ice | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/python/test/Ice/thread/Test.ice b/python/test/Ice/thread/Test.ice new file mode 100644 index 00000000000..8e1bb3fda39 --- /dev/null +++ b/python/test/Ice/thread/Test.ice @@ -0,0 +1,45 @@ +// ********************************************************************** +// +// Copyright (c) 2003-2017 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. +// +// ********************************************************************** + +#ifndef TEST_ICE +#define TEST_ICE + +#include <Ice/Properties.ice> + +module Test +{ + +interface TestIntf +{ + void sleep(int ms); +}; + +interface RemoteCommunicator +{ + TestIntf* getObject(); + + int getThreadHookStartCount(); + int getThreadHookStopCount(); + + int getThreadStartCount(); + int getThreadStopCount(); + + void destroy(); +}; + +interface RemoteCommunicatorFactory +{ + RemoteCommunicator* createCommunicator(Ice::PropertyDict props); + + void shutdown(); +}; + +}; + +#endif |