| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- //
- // System.EnterpriseServices.CompensatingResourceManager.Compensator.cs
- //
- // Author:
- // Tim Coleman ([email protected])
- //
- // Copyright (C) Tim Coleman, 2002
- //
- using System;
- using System.EnterpriseServices;
- namespace System.EnterpriseServices.CompensatingResourceManager {
- public class Compensator : ServicedComponent{
- #region Constructors
- [MonoTODO]
- public Compensator ()
- {
- throw new NotImplementedException ();
- }
- #endregion // Constructors
- #region Properties
- public Clerk Clerk {
- [MonoTODO]
- get { throw new NotImplementedException (); }
- }
- #endregion // Properties
- #region Methods
- [MonoTODO]
- public virtual bool AbortRecord (LogRecord rec)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public virtual void BeginAbort (bool fRecovery)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public virtual void BeginCommit (bool fRecovery)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public virtual void BeginPrepare ()
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public virtual void CommitRecord (LogRecord rec)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public virtual void EndAbort ()
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public virtual void EndCommit ()
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public virtual bool EndPrepare ()
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public virtual bool PrepareRecord (LogRecord rec)
- {
- throw new NotImplementedException ();
- }
- #endregion // Methods
- }
- }
|