summaryrefslogtreecommitdiff
path: root/CIAO/ccm/CCM_ExecutorLocator.idl
blob: ef0ac8386d8c337f23f2459aa4f0e40b79eb98fc (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
// $Id$

#if !defined (CCM_EXECUTORLOCATOR_IDL)
#define CCM_EXECUTORLOCATOR_IDL

#include "ccm/CCM_EnterpriseComponent.idl"
#include "ccm/CCM_CCMException.idl"
#include "ccm/CCM_Object.idl"

// *************** Extended Container Interfaces ***************

module Components
{
  typeprefix Components "omg.org";

  local interface ExecutorLocator : EnterpriseComponent
  {
    Object obtain_executor (in string name)
      raises (CCMException);

    void release_executor (in Object exc)
      raises (CCMException);

    void configuration_complete()
      raises (InvalidConfiguration);
  };
};
#endif /* CCM_EXECUTORLOCATOR_IDL */