Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

IPendingWork Interface

 
Note: This API is now obsolete.

Provides methods to participate in a work batch.

Namespace:   System.Workflow.Runtime
Assembly:  System.Workflow.Runtime (in System.Workflow.Runtime.dll)

[ObsoleteAttribute("The System.Workflow.* types are deprecated.  Instead, please use the new types from System.Activities.*")]
public interface class IPendingWork

NameDescription
System_CAPS_pubmethodCommit(Transaction^, ICollection^)

Commits the list of work items by using the specified Transaction object.

System_CAPS_pubmethodComplete(Boolean, ICollection^)

Called when the transaction has completed.

System_CAPS_pubmethodMustCommit(ICollection^)

Allows the items in the work batch to assert whether they must commit immediately.

System_CAPS_noteNote

This material discusses types and namespaces that are obsolete. For more information, see Deprecated Types in Windows Workflow Foundation 4.5.

The IPendingWork interface is provided for services that want to participate in the workflow runtime engine batching mechanism. The batching mechanism is especially useful for services that use a durable store. It is often important in these cases to maintain consistency between the durable store used by the service and the internal state of the workflow runtime engine.

If you want your service to participate in workflow transaction batching provided by the WorkflowCommitWorkBatchService, you must implement the methods defined by the IPendingWork interface. The workflow runtime engine will call the Commit method on your service to commit the batch.

The SqlWorkflowPersistenceService class implements the IPendingWork interface.

.NET Framework
Available since 3.0
Return to top
Show:
© 2017 Microsoft