summaryrefslogtreecommitdiff
path: root/TAO/DevGuideExamples/BiDirectionalGIOP/simple.idl
blob: cb98b3cadeb6271fb64f818ab1666714b4df8de1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// $Id$

#include "callback.idl"

interface Simple
{
  // Just call a method on the server,
  long test_method(in boolean do_callback);

  // send the callback object to the server
  void callback_object(in Callback cb);

  // A safe way to shutdown the server, it is a oneway function so we
  // will never get a COMM_FAILURE error
  oneway void shutdown();
};