LockerHelpers 1.0.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package LockerHelpers --version 1.0.0
                    
NuGet\Install-Package LockerHelpers -Version 1.0.0
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="LockerHelpers" Version="1.0.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="LockerHelpers" Version="1.0.0" />
                    
Directory.Packages.props
<PackageReference Include="LockerHelpers" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add LockerHelpers --version 1.0.0
                    
#r "nuget: LockerHelpers, 1.0.0"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#addin nuget:?package=LockerHelpers&version=1.0.0
                    
Install as a Cake Addin
#tool nuget:?package=LockerHelpers&version=1.0.0
                    
Install as a Cake Tool

Locker Helpers

Provides helpers for execution locking mechanism. Can be used for heavy multi threading operations.

NuGets

Name Info
ObservableHelpers NuGet

Installation

// Install release version
Install-Package LockerHelpers

// Install pre-release version
Install-Package LockerHelpers -pre

Supported frameworks

.NET Standard 2.0 and above - see https://github.com/dotnet/standard/blob/master/docs/versions.md for compatibility matrix

Usage

RWLock Sample

using LockerHelpers;

namespace YourNamespace
{
    public class SafeList<T>
    {
        private List<T> list = new List<T>;
        private RWLock rwLock = new RWLock();

        public int Count
        {
            get
            {
                return rwLock.LockRead(() => list.Count);
            }
        }

        public void SafeAdd(T value)
        {
            rwLock.LockWrite(() => list.Add(value));
        }

        public void SafeRemove(T value)
        {
            rwLock.LockWrite(() => list.Remove(value));
        }
    }
}

Want To Support This Project?

All I have ever asked is to be active by submitting bugs, features, and sending those pull requests down!.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETStandard 2.0

    • No dependencies.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on LockerHelpers:

Package Downloads
ObservableHelpers

Observable helpers with short-and-easy and UI-safe property implementations. Can be used for any MVVM software architectural applications.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
2.0.140 50 5/27/2025
2.0.139 75 4/9/2025
2.0.138 83 3/25/2025
2.0.137 77 3/18/2025
2.0.136 96 3/13/2025
2.0.135 215 2/21/2025
2.0.134 209 1/28/2025
2.0.133 93 1/21/2025
2.0.132 95 1/17/2025
2.0.131 93 1/16/2025
2.0.130 96 1/13/2025
2.0.129 85 1/13/2025
2.0.128 95 1/10/2025
2.0.127 103 1/1/2025
2.0.126 98 12/30/2024
2.0.125 99 12/30/2024
2.0.124 102 12/27/2024
2.0.123 97 12/26/2024
2.0.122 95 12/19/2024
2.0.121 95 12/19/2024
2.0.120 105 12/18/2024
2.0.119 100 12/9/2024
2.0.118 102 12/6/2024
2.0.117 101 12/6/2024
2.0.116 107 12/5/2024
2.0.115 110 12/5/2024
2.0.114 109 12/4/2024
2.0.113 109 12/3/2024
2.0.112 107 12/3/2024
2.0.111 97 12/3/2024
2.0.110 106 12/3/2024
2.0.109 105 11/26/2024
2.0.108 100 11/26/2024
2.0.107 85 11/25/2024
2.0.106 102 11/25/2024
2.0.105 92 11/22/2024
2.0.104 94 11/22/2024
2.0.103 92 11/21/2024
2.0.102 92 11/21/2024
2.0.101 96 11/20/2024
2.0.100 92 11/20/2024
2.0.99 91 11/15/2024
2.0.98 93 11/14/2024
2.0.97 95 11/13/2024
2.0.96 103 11/11/2024
2.0.95 95 11/8/2024
2.0.94 94 11/7/2024
2.0.93 94 11/7/2024
2.0.92 92 11/6/2024
2.0.91 91 11/5/2024
2.0.90 92 10/31/2024
2.0.89 87 10/31/2024
2.0.88 91 10/30/2024
2.0.87 86 10/30/2024
2.0.86 88 10/30/2024
2.0.85 92 10/29/2024
2.0.84 92 10/28/2024
2.0.83 94 10/28/2024
2.0.82 87 10/28/2024
2.0.81 93 10/24/2024
2.0.80 94 10/24/2024
2.0.79 91 10/23/2024
2.0.78 95 10/23/2024
2.0.77 96 10/18/2024
2.0.76 89 10/18/2024
2.0.75 95 10/15/2024
2.0.74 93 10/15/2024
2.0.73 96 10/14/2024
2.0.72 95 10/14/2024
2.0.71 92 10/14/2024
2.0.70 95 10/8/2024
2.0.69 92 10/8/2024
2.0.68 114 10/7/2024
2.0.67 107 10/7/2024
2.0.66 92 10/7/2024
2.0.65 101 10/3/2024
2.0.64 100 10/3/2024
2.0.63 88 9/30/2024
2.0.62 85 9/30/2024
2.0.61 100 9/27/2024
2.0.60 97 9/26/2024
2.0.59 97 9/26/2024
2.0.58 91 9/25/2024
2.0.57 96 9/25/2024
2.0.56 94 9/24/2024
2.0.55 92 9/24/2024
2.0.54 95 9/23/2024
2.0.53 106 9/23/2024
2.0.52 94 9/20/2024
2.0.51 109 9/19/2024
2.0.50 98 9/18/2024
2.0.49 103 9/17/2024
2.0.48 94 9/17/2024
2.0.47 99 9/11/2024
2.0.46 102 9/11/2024
2.0.45 98 9/10/2024
2.0.43 108 9/6/2024
2.0.42 98 9/3/2024
2.0.41 106 8/30/2024
2.0.40 96 8/29/2024
2.0.39 101 8/26/2024
2.0.38 110 8/23/2024
2.0.37 114 8/23/2024
2.0.36 119 8/21/2024
2.0.35 105 8/21/2024
2.0.34 113 8/15/2024
2.0.33 106 8/15/2024
2.0.32 98 8/14/2024
2.0.31 105 8/14/2024
2.0.30 105 8/1/2024
2.0.29 90 7/31/2024
2.0.28 103 7/29/2024
2.0.27 101 7/29/2024
2.0.26 125 7/17/2024
2.0.25 97 7/17/2024
2.0.24 102 7/16/2024
2.0.23 99 7/16/2024
2.0.22 99 7/15/2024
2.0.21 99 7/15/2024
2.0.20 99 7/13/2024
2.0.19 103 7/12/2024
2.0.18 110 7/10/2024
2.0.16 118 7/9/2024
2.0.15 117 7/8/2024
2.0.14 108 7/8/2024
2.0.13 108 7/7/2024
2.0.12 107 7/2/2024
2.0.11 102 7/2/2024
2.0.10 107 7/1/2024
2.0.9 108 7/1/2024
2.0.8 105 6/30/2024
2.0.6 113 6/28/2024
2.0.5 196 10/4/2023
2.0.4 207 8/31/2023
2.0.3 181 8/29/2023
2.0.2 223 8/8/2023
2.0.1 208 7/11/2023
2.0.0 227 6/20/2023
1.0.6 730 9/8/2022
1.0.5 468 9/4/2022
1.0.4 465 9/4/2022
1.0.3 2,818 9/4/2022
1.0.2 2,819 3/7/2022
1.0.1 2,998 2/21/2022
1.0.0 770 2/19/2022

* Initial release