summaryrefslogtreecommitdiff
path: root/TAO/examples/CSD_Strategy/ThreadPool2/Foo.idl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/examples/CSD_Strategy/ThreadPool2/Foo.idl')
-rw-r--r--TAO/examples/CSD_Strategy/ThreadPool2/Foo.idl29
1 files changed, 29 insertions, 0 deletions
diff --git a/TAO/examples/CSD_Strategy/ThreadPool2/Foo.idl b/TAO/examples/CSD_Strategy/ThreadPool2/Foo.idl
new file mode 100644
index 00000000000..f4a756a31b1
--- /dev/null
+++ b/TAO/examples/CSD_Strategy/ThreadPool2/Foo.idl
@@ -0,0 +1,29 @@
+// $Id$
+#ifndef FOO_IDL
+#define FOO_IDL
+
+exception FooException {};
+exception TestException {};
+
+interface Foo
+{
+ /// void return-type, no arguments
+ void op1();
+
+ /// void return-type, 1 "in" argument
+ void op2(in long value);
+
+ /// long return-type, no arguments
+ long op3();
+
+ /// one-way version of op2
+ oneway void op4(in long value);
+
+ /// Operation that always raises an exception.
+ void op5() raises (FooException);
+
+ /// Client calls this last. It will shutdown the server.
+ void done();
+};
+
+#endif