| Platform SDK: Transaction Server |
IObjectContext.SetAbort, IObjectContext.SetComplete Methods Example
[This product will work only on Windows NT 4.0 versions and earlier. For Windows 2000 and later, see COM+ (Component Services).]
import com.ms.mtx.*;
boolean success = false;
// Do some work here.
// If the work was successful, call SetComplete
if (success)
MTx.GetObjectContext().SetComplete();
// Otherwise, call SetAbort.
else
MTx.GetObjectContext().SetAbort();