summaryrefslogtreecommitdiff
path: root/ACE/TAO/tests/DIOP/UDP.idl
blob: 3f1ebe8221a57f56a905c386414516be38c15e0c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* -*- 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.
};