progress_reporter Class (C++ REST SDK)

The progress reporter class allows reporting progress notifications of a specific type. Each progress_reporter object is bound to a particular asynchronous action or operation.

Warning

This topic contains information for the C++ REST SDK 1.0 (codename "Casablanca"). If you are using a later version from the Codeplex Casablanca web page, then use the local documentation at http://casablanca.codeplex.com/documentation.

template<
   typename _ProgressType
>
class progress_reporter;

Parameters

  • _ProgressType
    The payload type of each progress notification reported through the progress reporter.

Members

Public Constructors

Name

Description

progress_reporter::progress_reporter Constructor (C++ REST SDK)

Public Methods

Name

Description

progress_reporter::report Method (C++ REST SDK)

Sends a progress report to the asynchronous action or operation to which this progress reporter is bound.

Remarks

This type is only available to Windows Store apps.

Requirements

Header: pplxtasks.h

Namespace: pplx

See Also

Reference

pplx Namespace

create_async Function