C# Class Nexus.Client.ActivityMonitoring.ActivityMonitor

This monitors the status of activities.
Exibir arquivo Open project: NexusMods/NexusModManager-4.5

Public Methods

Method Description
ActivityMonitor ( ) : System.ComponentModel

The default constructor.

AddActivity ( IBackgroundTask p_tskTask ) : void

Adds a task to the monitor.

CanPause ( IBackgroundTask p_tskTask ) : bool

Determines if the given IBackgroundTask can be paused.

CanRemove ( IBackgroundTask p_tskTask ) : bool

Determines if the given IBackgroundTask can be removed from the monitor.

CanResume ( IBackgroundTask p_tskTask ) : bool

Determines if the given IBackgroundTask can be resumed.

PauseActivity ( IBackgroundTask p_tskTask ) : void

Pauses a task.

RemoveActivity ( IBackgroundTask p_tskTask ) : void

Removes a task from the monitor.

Tasks can only be removed if they are not running.

ResumeActivity ( IBackgroundTask p_tskTask ) : void

Resumes a task.

Private Methods

Method Description
Task_PropertyChanged ( object sender, PropertyChangedEventArgs e ) : void

Handles the INotifyPropertyChanged.PropertyChanged event of tasks.

This adds or removes tasks from the active task list as appropriate.

Method Details

ActivityMonitor() public method

The default constructor.
public ActivityMonitor ( ) : System.ComponentModel
return System.ComponentModel

AddActivity() public method

Adds a task to the monitor.
public AddActivity ( IBackgroundTask p_tskTask ) : void
p_tskTask IBackgroundTask The task to monitor.
return void

CanPause() public method

Determines if the given IBackgroundTask can be paused.
public CanPause ( IBackgroundTask p_tskTask ) : bool
p_tskTask IBackgroundTask The task for which it is to be determined /// if it can be paused.
return bool

CanRemove() public method

Determines if the given IBackgroundTask can be removed from the monitor.
public CanRemove ( IBackgroundTask p_tskTask ) : bool
p_tskTask IBackgroundTask The task for which it is to be determined /// if it can be removed from the monitor.
return bool

CanResume() public method

Determines if the given IBackgroundTask can be resumed.
public CanResume ( IBackgroundTask p_tskTask ) : bool
p_tskTask IBackgroundTask The task for which it is to be determined /// if it can be resumed.
return bool

PauseActivity() public method

Pauses a task.
public PauseActivity ( IBackgroundTask p_tskTask ) : void
p_tskTask IBackgroundTask The task to pause.
return void

RemoveActivity() public method

Removes a task from the monitor.
Tasks can only be removed if they are not running.
public RemoveActivity ( IBackgroundTask p_tskTask ) : void
p_tskTask IBackgroundTask The task to remove.
return void

ResumeActivity() public method

Resumes a task.
public ResumeActivity ( IBackgroundTask p_tskTask ) : void
p_tskTask IBackgroundTask The task to resume.
return void