Skip to main content
You are viewing help content for a version that is no longer maintained/updated.
All docs
V21.2
  • .NET Framework 4.5.2+
    • The page you are viewing does not exist in the .NET Standard 2.0+ platform documentation. This link will take you to the parent topic of the current section.

    SnapDocumentServer.AsynchronousOperationFinished Event

    Occurs after finishing an asynchronous operation in a separate thread.

    Namespace: DevExpress.Snap

    Assembly: DevExpress.Docs.v21.2.dll

    NuGet Package: DevExpress.Document.Processor

    Declaration

    public event EventHandler AsynchronousOperationFinished

    Event Data

    The AsynchronousOperationFinished event's data class is EventArgs.

    Remarks

    Handle this event to track the status of asynchronous operations that are being currently performed in separate threads and avoid simultaneous execution of similar operations.

    The document assembly is processed to an entirely separate thread to avoid application lock-ups.

    An example of an asynchronous operation that is performed in a separate thread is the Finish & Merge command that triggers the assembling of a mail merge document.

    snap-mail-merge-background-performing-separate-thread

    See Also