summaryrefslogtreecommitdiff
path: root/TAO/DevGuideExamples/BiDirectionalGIOP/simple.idl
blob: e6ef4fffa86469d07165166a8c077e1529ba0919 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#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();
};