class Poco::TaskProgressNotification

This notification is posted by the TaskManager for a task when its progress changes.

#include <TaskNotification.h>

class TaskProgressNotification: public Poco::TaskNotification
{
public:
    // construction

    TaskProgressNotification(
        Task* pTask,
        float progress
        );

    // methods

    float
    progress() const;
};

Inherited Members

public:
    // typedefs

    typedef AutoPtr<Notification> Ptr;

    // methods

    void
    duplicate() const;

    void
    release() const;

    int
    referenceCount() const;

    virtual
    std::string
    name() const;

    Task*
    task() const;