summaryrefslogtreecommitdiff
path: root/js/test/Ice/retry/Test.ice
diff options
context:
space:
mode:
Diffstat (limited to 'js/test/Ice/retry/Test.ice')
-rw-r--r--js/test/Ice/retry/Test.ice21
1 files changed, 21 insertions, 0 deletions
diff --git a/js/test/Ice/retry/Test.ice b/js/test/Ice/retry/Test.ice
new file mode 100644
index 00000000000..e04cbee435b
--- /dev/null
+++ b/js/test/Ice/retry/Test.ice
@@ -0,0 +1,21 @@
+// **********************************************************************
+//
+// 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 Retry
+{
+ void op(bool kill);
+ void shutdown();
+};
+
+};