summaryrefslogtreecommitdiff
path: root/TAO/tests/DIOP/UDP.idl
blob: e9597f2463972cd1a013f9efd91bd8442d6c7cb0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* -*- C++ -*- */
// UDP.idl
interface UDP
{
  // = TITLE
  //    Defines an interface that encapsulates operations that
  //    return the current time of day and shuts down the server.

  oneway void invoke (in string client_name,
                      in UDP udpHandler,
                      in long request_id);
  // Returns the current time of day on another machine.

  oneway void shutdown ();
  // Shutdown the application.
};