Molybden API
Loading...
Searching...
No Matches
molybden::AppUpdateEvents Class Reference

A class that contains all application update events. More...

#include <app_update_events.hpp>

Inheritance diagram for molybden::AppUpdateEvents:
molybden::AppUpdate

Public Attributes

Event< AppUpdateInstalledonAppUpdateInstalled
 Invoked when the application update has been installed.
 
Event< AppUpdateFailedonAppUpdateFailed
 Invoked when the application update has failed to be installed.
 
Event< AppUpdateProgressChangedonAppUpdateProgressChanged
 Invoked when the progress of the application update has been changed.
 

Detailed Description

A class that contains all application update events.

Member Data Documentation

◆ onAppUpdateFailed

Event<AppUpdateFailed> molybden::AppUpdateEvents::onAppUpdateFailed

Invoked when the application update has failed to be installed.

Use the following approach to subscribe to receiving the event:

app_update->onAppUpdateFailed += [](const AppUpdateFailed& event) {};
The AppUpdateEvents::onAppUpdateFailed event arguments.
Definition app_update_events.hpp:44

◆ onAppUpdateInstalled

Event<AppUpdateInstalled> molybden::AppUpdateEvents::onAppUpdateInstalled

Invoked when the application update has been installed.

Use the following approach to subscribe to receiving the event:

app_update->onAppUpdateInstalled += [](const AppUpdateInstalled& event) {};
The AppUpdateEvents::onAppUpdateInstalled event arguments.
Definition app_update_events.hpp:19

◆ onAppUpdateProgressChanged

Event<AppUpdateProgressChanged> molybden::AppUpdateEvents::onAppUpdateProgressChanged

Invoked when the progress of the application update has been changed.

Use the following approach to subscribe to receiving the event:

app_update->onAppUpdateProgressChanged += [](const AppUpdateProgressChanged& event) {};
The AppUpdateEvents::onAppUpdateProgressChanged event arguments.
Definition app_update_events.hpp:29

The documentation for this class was generated from the following file: