summaryrefslogtreecommitdiff
path: root/modules/CIAO/ccm/CCM_SessionSynchronization.idl
blob: 988cd4fdfb1c691eb5057037a6baf60000187731 (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
// $Id$

#if !defined (CCM_SESSIONSYNCHRONIZATION_IDL)
#define CCM_SESSIONSYNCHRONIZATION_IDL

#include "ccm/CCM_CCMException.idl"

// *************** Basic Container interfaces ***************

module Components
{
  typeprefix Components "omg.org";

  local interface SessionSynchronization
  {
    void after_begin ()
      raises (CCMException);

    void before_completion ()
      raises (CCMException);

    void after_completion (in boolean committed)
      raises (CCMException);
  };
};
#endif /* CCM_SESSIONSYNCHRONIZATION_IDL */