summaryrefslogtreecommitdiff
path: root/TAO/tests/Smart_Proxies/Benchmark/test.idl
blob: 5bcb1fa79dddcb788f1b910877b7bb4b603c1821 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// $Id$

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 ();
};