summaryrefslogtreecommitdiff
path: root/TAO/examples/PluggableUDP/tests/Basic/UDP.idl
blob: 27d0cf0996398404fbaeb6254c1e26375a09dbbb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* -*- C++ -*- */
// UDP.idl
// $Id$

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.
};