Info
Version: | 1.1.0 |
Author(s): | savaged |
Last Update: | Wednesday, November 7, 2018 |
.NET Fiddle: | Create the first Fiddle |
Project Url: | https://github.com/savaged/BusyStateManager |
NuGet Url: | https://www.nuget.org/packages/BusyStateManager |
Install
Install-Package BusyStateManager
dotnet add package BusyStateManager
paket add BusyStateManager
BusyStateManager Download (Unzip the "nupkg" after downloading)
Dependencies
- CommonServiceLocator(>= 2.0.4)
- MvvmLightLibs(>= 5.4.1.1)
Tags
It aims to be simple with one main class that provides a Boolean value for busy which should be used in conjunction with the Xceed Toolkit BusyIndicator or similar control. This class is responsible for managing the busy state which can be problematic if it is just being set in process because different threads can set it prior to other threads completing.
This class aims to provide a better solution, namely to have this central static register of running threads, which unregister once complete, then the busy value is only set to true once the register is empty.