LockerHelpers 2.0.135

This package has a SemVer 2.0.0 package version: 2.0.135+build.135.
dotnet add package LockerHelpers --version 2.0.135                
NuGet\Install-Package LockerHelpers -Version 2.0.135                
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.135" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add LockerHelpers --version 2.0.135                
#r "nuget: LockerHelpers, 2.0.135"                
#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.
// Install LockerHelpers as a Cake Addin
#addin nuget:?package=LockerHelpers&version=2.0.135

// Install LockerHelpers as a Cake Tool
#tool nuget:?package=LockerHelpers&version=2.0.135                

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. 
.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.135 166 2/21/2025
2.0.134 156 1/28/2025
2.0.133 51 1/21/2025
2.0.132 52 1/17/2025
2.0.131 46 1/16/2025
2.0.130 51 1/13/2025
2.0.129 40 1/13/2025
2.0.128 46 1/10/2025
2.0.127 58 1/1/2025
2.0.126 49 12/30/2024
2.0.125 55 12/30/2024
2.0.124 55 12/27/2024
2.0.123 51 12/26/2024
2.0.122 54 12/19/2024
2.0.121 52 12/19/2024
2.0.120 57 12/18/2024
2.0.119 55 12/9/2024
2.0.118 57 12/6/2024
2.0.117 58 12/6/2024
2.0.116 59 12/5/2024
2.0.115 59 12/5/2024
2.0.114 66 12/4/2024
2.0.113 62 12/3/2024
2.0.112 59 12/3/2024
2.0.111 52 12/3/2024
2.0.110 53 12/3/2024
2.0.109 58 11/26/2024
2.0.108 53 11/26/2024
2.0.107 38 11/25/2024
2.0.106 56 11/25/2024
2.0.105 50 11/22/2024
2.0.104 51 11/22/2024
2.0.103 47 11/21/2024
2.0.102 44 11/21/2024
2.0.101 49 11/20/2024
2.0.100 47 11/20/2024
2.0.99 43 11/15/2024
2.0.98 48 11/14/2024
2.0.97 47 11/13/2024
2.0.96 53 11/11/2024
2.0.95 49 11/8/2024
2.0.94 50 11/7/2024
2.0.93 46 11/7/2024
2.0.92 48 11/6/2024
2.0.91 49 11/5/2024
2.0.90 47 10/31/2024
2.0.89 44 10/31/2024
2.0.88 48 10/30/2024
2.0.87 43 10/30/2024
2.0.86 44 10/30/2024
2.0.85 46 10/29/2024
2.0.84 47 10/28/2024
2.0.83 45 10/28/2024
2.0.82 45 10/28/2024
2.0.81 50 10/24/2024
2.0.80 49 10/24/2024
2.0.79 48 10/23/2024
2.0.78 48 10/23/2024
2.0.77 50 10/18/2024
2.0.76 47 10/18/2024
2.0.75 48 10/15/2024
2.0.74 52 10/15/2024
2.0.73 52 10/14/2024
2.0.72 51 10/14/2024
2.0.71 51 10/14/2024
2.0.70 51 10/8/2024
2.0.69 49 10/8/2024
2.0.68 68 10/7/2024
2.0.67 57 10/7/2024
2.0.66 50 10/7/2024
2.0.65 56 10/3/2024
2.0.64 53 10/3/2024
2.0.63 43 9/30/2024
2.0.62 43 9/30/2024
2.0.61 58 9/27/2024
2.0.60 52 9/26/2024
2.0.59 56 9/26/2024
2.0.58 52 9/25/2024
2.0.57 54 9/25/2024
2.0.56 53 9/24/2024
2.0.55 52 9/24/2024
2.0.54 53 9/23/2024
2.0.53 61 9/23/2024
2.0.52 55 9/20/2024
2.0.51 63 9/19/2024
2.0.50 56 9/18/2024
2.0.49 64 9/17/2024
2.0.48 55 9/17/2024
2.0.47 56 9/11/2024
2.0.46 56 9/11/2024
2.0.45 56 9/10/2024
2.0.43 63 9/6/2024
2.0.42 56 9/3/2024
2.0.41 62 8/30/2024
2.0.40 53 8/29/2024
2.0.39 60 8/26/2024
2.0.38 65 8/23/2024
2.0.37 63 8/23/2024
2.0.36 74 8/21/2024
2.0.35 66 8/21/2024
2.0.34 68 8/15/2024
2.0.33 61 8/15/2024
2.0.32 58 8/14/2024
2.0.31 59 8/14/2024
2.0.30 61 8/1/2024
2.0.29 48 7/31/2024
2.0.28 61 7/29/2024
2.0.27 58 7/29/2024
2.0.26 82 7/17/2024
2.0.25 56 7/17/2024
2.0.24 60 7/16/2024
2.0.23 59 7/16/2024
2.0.22 58 7/15/2024
2.0.21 61 7/15/2024
2.0.20 60 7/13/2024
2.0.19 59 7/12/2024
2.0.18 64 7/10/2024
2.0.16 73 7/9/2024
2.0.15 73 7/8/2024
2.0.14 67 7/8/2024
2.0.13 66 7/7/2024
2.0.12 70 7/2/2024
2.0.11 62 7/2/2024
2.0.10 67 7/1/2024
2.0.9 65 7/1/2024
2.0.8 62 6/30/2024
2.0.6 70 6/28/2024
2.0.5 183 10/4/2023
2.0.4 191 8/31/2023
2.0.3 170 8/29/2023
2.0.2 208 8/8/2023
2.0.1 191 7/11/2023
2.0.0 210 6/20/2023
1.0.6 707 9/8/2022
1.0.5 441 9/4/2022
1.0.4 440 9/4/2022
1.0.3 2,787 9/4/2022
1.0.2 2,772 3/7/2022
1.0.1 2,959 2/21/2022
1.0.0 729 2/19/2022

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

## What's Changed
* Bump DisposableHelpers from 1.2.90 to 1.2.93 by @dependabot in https://github.com/Kiryuumaru/LockerHelpers/pull/144

**Full Changelog**: https://github.com/Kiryuumaru/LockerHelpers/compare/build.134...build.135