summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/LoadBalancing/Hasher.idl
blob: 0aa1bcbf5e9085002f9212994d6bcc3663c887a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// -*- IDL -*-

//=============================================================================
/**
 * @file Hasher.idl
 *
 * $Id$
 *
 * @author Ossama Othman <ossama@uci.edu>
 */
//=============================================================================

interface Hasher
{
  /// Perform a simple hashing operation on the input string <str> and
  /// return the hash value.
  unsigned long do_hash (in string str);

  /// Shutdown the ORB.
  oneway void shutdown ();
};