/// The Receiver interface is implemented by the simple chat /// clients.The interface functions are called by the chat server. interface Receiver { /// Displays the message in the client application. void message (in string msg); /// Called by the chat server before it goes away. oneway void shutdown (); };