summaryrefslogtreecommitdiff
path: root/TAO/examples/Simple/echo/Echo.idl
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>1998-11-26 00:31:07 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>1998-11-26 00:31:07 +0000
commit94ec94edfde4371daef0f790daeb6ddabd085989 (patch)
tree0e7b1a3646e5af0c30f59d1c080f6b3fb56dcc70 /TAO/examples/Simple/echo/Echo.idl
parent9919ead43669136a9cab73c92d4158fa2cd32e3a (diff)
downloadATCD-94ec94edfde4371daef0f790daeb6ddabd085989.tar.gz
.
Diffstat (limited to 'TAO/examples/Simple/echo/Echo.idl')
-rw-r--r--TAO/examples/Simple/echo/Echo.idl15
1 files changed, 11 insertions, 4 deletions
diff --git a/TAO/examples/Simple/echo/Echo.idl b/TAO/examples/Simple/echo/Echo.idl
index c0c5211a427..a396838f0bb 100644
--- a/TAO/examples/Simple/echo/Echo.idl
+++ b/TAO/examples/Simple/echo/Echo.idl
@@ -7,11 +7,18 @@
interface Echo
{
// = TITLE
- // Defines an interface that encapsulates operations that
- // return the mesg string to be displayed and shuts down the server.
+ // Defines an interface that encapsulates operations that return the
+ // mesg string to be displayed and shuts down the server.
- string echo (in string mesg);
- // This operation returns the message and displays it on the screen.
+ typedef sequence<Object> List;
+
+ List echo_list (in string message);
+ // This operation returns the message as a sequence of Objects and
+ // displays it on the screen as a string.
+
+ string echo_string (in string message);
+ // This operation returns the message as a string and displays it on
+ // the screen.
oneway void shutdown ();
// This operation will shutdown the server.