LockerHelpers 2.0.148

This package has a SemVer 2.0.0 package version: 2.0.148+build.20250815024914.7c17ffa.
There is a newer version of this package available.
See the version list below for details.
dotnet add package LockerHelpers --version 2.0.148
                    
NuGet\Install-Package LockerHelpers -Version 2.0.148
                    
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="2.0.148" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="LockerHelpers" Version="2.0.148" />
                    
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 2.0.148
                    
#r "nuget: LockerHelpers, 2.0.148"
                    
#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.
#:package LockerHelpers@2.0.148
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=LockerHelpers&version=2.0.148
                    
Install as a Cake Addin
#tool nuget:?package=LockerHelpers&version=2.0.148
                    
Install as a Cake Tool

Locker Helpers

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

NuGets

Name Info
LockerHelpers 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!.

paypal

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 is compatible.  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 is compatible.  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 is compatible.  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 is compatible.  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.

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.152 20 9/8/2025
2.0.151 28 9/5/2025
2.0.150 34 8/21/2025
2.0.149 33 8/20/2025
2.0.148 36 8/15/2025
2.0.147 40 8/9/2025
2.0.146 36 8/7/2025
2.0.145 38 8/6/2025
2.0.143 43 8/6/2025
2.0.142 21 7/30/2025
2.0.141 19 7/29/2025
2.0.140 77 5/27/2025
2.0.139 96 4/9/2025
2.0.138 114 3/25/2025
2.0.137 97 3/18/2025
2.0.136 125 3/13/2025
2.0.135 241 2/21/2025
2.0.134 235 1/28/2025
2.0.133 115 1/21/2025
2.0.132 126 1/17/2025
2.0.131 119 1/16/2025
2.0.130 125 1/13/2025
2.0.129 116 1/13/2025
2.0.128 124 1/10/2025
2.0.127 132 1/1/2025
2.0.126 121 12/30/2024
2.0.125 129 12/30/2024
2.0.124 129 12/27/2024
2.0.123 127 12/26/2024
2.0.122 125 12/19/2024
2.0.121 123 12/19/2024
2.0.120 130 12/18/2024
2.0.119 131 12/9/2024
2.0.118 130 12/6/2024
2.0.117 126 12/6/2024
2.0.116 138 12/5/2024
2.0.115 138 12/5/2024
2.0.114 132 12/4/2024
2.0.113 137 12/3/2024
2.0.112 128 12/3/2024
2.0.111 126 12/3/2024
2.0.110 130 12/3/2024
2.0.109 127 11/26/2024
2.0.108 121 11/26/2024
2.0.107 116 11/25/2024
2.0.106 125 11/25/2024
2.0.105 117 11/22/2024
2.0.104 116 11/22/2024
2.0.103 114 11/21/2024
2.0.102 123 11/21/2024
2.0.101 124 11/20/2024
2.0.100 113 11/20/2024
2.0.99 120 11/15/2024
2.0.98 123 11/14/2024
2.0.97 123 11/13/2024
2.0.96 130 11/11/2024
2.0.95 124 11/8/2024
2.0.94 120 11/7/2024
2.0.93 119 11/7/2024
2.0.92 121 11/6/2024
2.0.91 116 11/5/2024
2.0.90 117 10/31/2024
2.0.89 109 10/31/2024
2.0.88 115 10/30/2024
2.0.87 111 10/30/2024
2.0.86 118 10/30/2024
2.0.85 120 10/29/2024
2.0.84 114 10/28/2024
2.0.83 122 10/28/2024
2.0.82 119 10/28/2024
2.0.81 114 10/24/2024
2.0.80 122 10/24/2024
2.0.79 118 10/23/2024
2.0.78 122 10/23/2024
2.0.77 118 10/18/2024
2.0.76 110 10/18/2024
2.0.75 126 10/15/2024
2.0.74 122 10/15/2024
2.0.73 126 10/14/2024
2.0.72 116 10/14/2024
2.0.71 121 10/14/2024
2.0.70 123 10/8/2024
2.0.69 117 10/8/2024
2.0.68 143 10/7/2024
2.0.67 137 10/7/2024
2.0.66 118 10/7/2024
2.0.65 129 10/3/2024
2.0.64 127 10/3/2024
2.0.63 115 9/30/2024
2.0.62 107 9/30/2024
2.0.61 125 9/27/2024
2.0.60 124 9/26/2024
2.0.59 127 9/26/2024
2.0.58 117 9/25/2024
2.0.57 127 9/25/2024
2.0.56 122 9/24/2024
2.0.55 118 9/24/2024
2.0.54 125 9/23/2024
2.0.53 130 9/23/2024
2.0.52 124 9/20/2024
2.0.51 138 9/19/2024
2.0.50 128 9/18/2024
2.0.49 135 9/17/2024
2.0.48 125 9/17/2024
2.0.47 126 9/11/2024
2.0.46 132 9/11/2024
2.0.45 126 9/10/2024
2.0.43 137 9/6/2024
2.0.42 122 9/3/2024
2.0.41 135 8/30/2024
2.0.40 123 8/29/2024
2.0.39 126 8/26/2024
2.0.38 137 8/23/2024
2.0.37 137 8/23/2024
2.0.36 148 8/21/2024
2.0.35 134 8/21/2024
2.0.34 138 8/15/2024
2.0.33 132 8/15/2024
2.0.32 127 8/14/2024
2.0.31 135 8/14/2024
2.0.30 134 8/1/2024
2.0.29 123 7/31/2024
2.0.28 129 7/29/2024
2.0.27 131 7/29/2024
2.0.26 146 7/17/2024
2.0.25 119 7/17/2024
2.0.24 135 7/16/2024
2.0.23 125 7/16/2024
2.0.22 121 7/15/2024
2.0.21 128 7/15/2024
2.0.20 127 7/13/2024
2.0.19 130 7/12/2024
2.0.18 137 7/10/2024
2.0.16 150 7/9/2024
2.0.15 143 7/8/2024
2.0.14 129 7/8/2024
2.0.13 130 7/7/2024
2.0.12 132 7/2/2024
2.0.11 125 7/2/2024
2.0.10 134 7/1/2024
2.0.9 130 7/1/2024
2.0.8 132 6/30/2024
2.0.6 137 6/28/2024
2.0.5 215 10/4/2023
2.0.4 239 8/31/2023
2.0.3 205 8/29/2023
2.0.2 246 8/8/2023
2.0.1 232 7/11/2023
2.0.0 259 6/20/2023
1.0.6 769 9/8/2022
1.0.5 501 9/4/2022
1.0.4 504 9/4/2022
1.0.3 2,856 9/4/2022
1.0.2 2,858 3/7/2022
1.0.1 3,040 2/21/2022
1.0.0 809 2/19/2022

## New Version
* Bump `locker_helpers` from `2.0.147` to `2.0.148`. See [changelog](https://github.com/Kiryuumaru/LockerHelpers/compare/locker_helpers/2.0.147...locker_helpers/2.0.148)

## What's Changed
* Bump DisposableHelpers from 1.2.123 to 1.2.125 by @dependabot[bot] in https://github.com/Kiryuumaru/LockerHelpers/pull/163

**Full Changelog**: https://github.com/Kiryuumaru/LockerHelpers/compare/build.20250809183630.fb46d31...build.20250815024914.7c17ffa