2 #if
!defined
(_ECHO_IDL
)
5 // Defines an interface that encapsulates operations that return the
6 // mesg string to be displayed and shuts down the server.
9 typedef sequence
<Object> List
;
11 // This operation returns the message as a sequence of Objects and
12 // displays it on the screen as a string.
13 List echo_list
(in string message);
15 // This operation returns the message as a string and displays it on
17 string echo_string
(in string message);
19 // This operation will shutdown the server.
20 oneway
void shutdown
();
23 #endif
/* _ECHO_IDL */