summaryrefslogtreecommitdiff
path: root/CIAO/ccm/Session/CCM_SessionSynchronization.idl
blob: f691ca40bc6909ed992ed6cf072877c3005cf5fa (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
/// Compliant with OMG 06-04-01 Section 9.3.3.3

#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 */