Compensator.BeginCommit(Boolean) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Notifies the Compensating Resource Manager (CRM) Compensator of the commit phase of the transaction completion and the upcoming delivery of records.
public:
virtual void BeginCommit(bool fRecovery);
public virtual void BeginCommit (bool fRecovery);
abstract member BeginCommit : bool -> unit
override this.BeginCommit : bool -> unit
Public Overridable Sub BeginCommit (fRecovery As Boolean)
Parameters
- fRecovery
- Boolean
true
to begin commit phase; otherwise, false
.
Examples
The following code example demonstrates the implementation of this method.
public:
virtual void BeginCommit(bool commit) override
{
// nothing to do
}
public override void BeginCommit (bool commit)
{
// nothing to do
}
Public Overrides Sub BeginCommit(ByVal commit As Boolean)
End Sub
' nothing to do
Applies to
التعاون معنا على GitHub
يمكن العثور على مصدر هذا المحتوى على GitHub حيث يمكنك أيضاً إضافة مشاكل وطلبات سحب ومراجعتها. للحصول على معلومات إضافية، اطلع على دليل المساهم لدينا.