summaryrefslogtreecommitdiff
path: root/TAO/tests/Smart_Proxies/Benchmark/test.idl
blob: 5c954463b51cafb179a99371d6861922aac8f205 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
interface Test
{
  // = TITLE
  //    A simple test interface
  //
  // = DESCRIPTION
  //    This test demostrates the smart proxy feature in TAO
  //    and shows how it can improve performace via caching.

  short box_prices ();
  // Get the prices for the box seats of the Broadway show.

  long tickets (in short number);
  // Order tickets.

  oneway void shutdown ();
};