summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/mgm.idl
blob: b9470031486a392fc5c7364a94695498c2f25a5c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
//
// $Id$
//
// ================================================================
//
// = LIBRARY
//   TAO_PortableGroup
//
// = FILENAME
//   mgm.pidl
//
// = DESCRIPTION
//
//   This file contains the multicast group manager interface from
//   the MIOP specification.  It is currently unused.
//
// ================================================================


#ifdef _MGM_idl
#define _MGM_idl

#include "PortableGroup.idl"

module MGM {
  // Property values
  typedef long GroupCreationMode

  const GroupCreationMode CREATE_ADDRESS_DEFERED = 0;
  const GroupCreationMode CREATE_ADDRESS_GENERATED = 1;
  const GroupCreationMode CREATE_ADDRESS_SUPPLIED = 2;

  interface ObjectGroupFactory :
    PortableGroup::GenericFactory,
    PortableGroup::PropertyManager,
    PortableGroup::ObjectGroupManager {}
};

#endif // _MGM_idl