summaryrefslogtreecommitdiff
path: root/js/test/Ice/timeout/Test.ice
diff options
context:
space:
mode:
Diffstat (limited to 'js/test/Ice/timeout/Test.ice')
-rw-r--r--js/test/Ice/timeout/Test.ice28
1 files changed, 28 insertions, 0 deletions
diff --git a/js/test/Ice/timeout/Test.ice b/js/test/Ice/timeout/Test.ice
new file mode 100644
index 00000000000..4fc6fd980fe
--- /dev/null
+++ b/js/test/Ice/timeout/Test.ice
@@ -0,0 +1,28 @@
+// **********************************************************************
+//
+// 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
+{
+
+sequence<byte> ByteSeq;
+
+interface Timeout
+{
+ void op();
+ void sendData(ByteSeq seq);
+ void sleep(int to);
+
+ void holdAdapter(int to);
+
+ void shutdown();
+};
+
+};