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

#if !defined (CCM_SESSIONSYNCHRONIZATION_IDL)
#define CCM_SESSIONSYNCHRONIZATION_IDL

#include "ccm/CCM_CCMException.idl"

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

#if !defined (CCM_LW)

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

#endif /* CCM_SESSIONSYNCHRONIZATION_IDL */