LockerHelpers 2.0.138

This package has a SemVer 2.0.0 package version: 2.0.138+build.138.
dotnet add package LockerHelpers --version 2.0.138
                    
NuGet\Install-Package LockerHelpers -Version 2.0.138
                    
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.138" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="LockerHelpers" Version="2.0.138" />
                    
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.138
                    
#r "nuget: LockerHelpers, 2.0.138"
                    
#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=2.0.138
                    
Install LockerHelpers as a Cake Addin
#tool nuget:?package=LockerHelpers&version=2.0.138
                    
Install LockerHelpers 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. 
.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.138 44 13 days ago
2.0.137 45 20 days ago
2.0.136 60 25 days ago
2.0.135 184 2 months ago
2.0.134 173 2 months ago
2.0.133 65 3 months ago
2.0.132 68 3 months ago
2.0.131 63 3 months ago
2.0.130 66 3 months ago
2.0.129 54 3 months ago
2.0.128 62 3 months ago
2.0.127 73 3 months ago
2.0.126 67 3 months ago
2.0.125 70 3 months ago
2.0.124 68 3 months ago
2.0.123 66 3 months ago
2.0.122 68 4 months ago
2.0.121 66 4 months ago
2.0.120 73 4 months ago
2.0.119 71 4 months ago
2.0.118 72 4 months ago
2.0.117 72 4 months ago
2.0.116 77 4 months ago
2.0.115 75 4 months ago
2.0.114 82 4 months ago
2.0.113 78 4 months ago
2.0.112 75 4 months ago
2.0.111 68 4 months ago
2.0.110 73 4 months ago
2.0.109 75 4 months ago
2.0.108 70 4 months ago
2.0.107 53 4 months ago
2.0.106 72 4 months ago
2.0.105 63 5 months ago
2.0.104 66 5 months ago
2.0.103 63 5 months ago
2.0.102 60 5 months ago
2.0.101 65 5 months ago
2.0.100 60 5 months ago
2.0.99 57 5 months ago
2.0.98 63 5 months ago
2.0.97 62 5 months ago
2.0.96 68 5 months ago
2.0.95 64 5 months ago
2.0.94 63 5 months ago
2.0.93 61 5 months ago
2.0.92 63 5 months ago
2.0.91 64 5 months ago
2.0.90 62 5 months ago
2.0.89 59 5 months ago
2.0.88 63 5 months ago
2.0.87 58 5 months ago
2.0.86 59 5 months ago
2.0.85 62 5 months ago
2.0.84 62 5 months ago
2.0.83 61 5 months ago
2.0.82 60 5 months ago
2.0.81 65 5 months ago
2.0.80 64 5 months ago
2.0.79 63 5 months ago
2.0.78 63 5 months ago
2.0.77 64 6 months ago
2.0.76 60 6 months ago
2.0.75 63 6 months ago
2.0.74 64 6 months ago
2.0.73 67 6 months ago
2.0.72 65 6 months ago
2.0.71 65 6 months ago
2.0.70 65 6 months ago
2.0.69 63 6 months ago
2.0.68 82 6 months ago
2.0.67 70 6 months ago
2.0.66 63 6 months ago
2.0.65 71 6 months ago
2.0.64 70 6 months ago
2.0.63 59 6 months ago
2.0.62 56 6 months ago
2.0.61 72 6 months ago
2.0.60 65 6 months ago
2.0.59 68 6 months ago
2.0.58 65 6 months ago
2.0.57 66 6 months ago
2.0.56 67 6 months ago
2.0.55 64 6 months ago
2.0.54 66 6 months ago
2.0.53 73 6 months ago
2.0.52 68 7 months ago
2.0.51 77 7 months ago
2.0.50 70 7 months ago
2.0.49 76 7 months ago
2.0.48 66 7 months ago
2.0.47 69 7 months ago
2.0.46 70 7 months ago
2.0.45 69 7 months ago
2.0.43 77 7 months ago
2.0.42 68 7 months ago
2.0.41 76 7 months ago
2.0.40 66 7 months ago
2.0.39 73 7 months ago
2.0.38 78 7 months ago
2.0.37 76 7 months ago
2.0.36 87 8 months ago
2.0.35 78 8 months ago
2.0.34 81 8 months ago
2.0.33 76 8 months ago
2.0.32 72 8 months ago
2.0.31 71 8 months ago
2.0.30 74 8 months ago
2.0.29 63 8 months ago
2.0.28 74 8 months ago
2.0.27 71 8 months ago
2.0.26 98 9 months ago
2.0.25 68 9 months ago
2.0.24 75 9 months ago
2.0.23 72 9 months ago
2.0.22 72 9 months ago
2.0.21 72 9 months ago
2.0.20 73 9 months ago
2.0.19 72 9 months ago
2.0.18 78 9 months ago
2.0.16 86 9 months ago
2.0.15 85 9 months ago
2.0.14 80 9 months ago
2.0.13 80 9 months ago
2.0.12 82 9 months ago
2.0.11 75 9 months ago
2.0.10 81 9 months ago
2.0.9 79 9 months ago
2.0.8 74 9 months ago
2.0.6 83 9 months ago
2.0.5 183 10/4/2023
2.0.4 192 8/31/2023
2.0.3 171 8/29/2023
2.0.2 209 8/8/2023
2.0.1 191 7/11/2023
2.0.0 211 6/20/2023
1.0.6 713 9/8/2022
1.0.5 447 9/4/2022
1.0.4 447 9/4/2022
1.0.3 2,793 9/4/2022
1.0.2 2,783 3/7/2022
1.0.1 2,969 2/21/2022
1.0.0 738 2/19/2022

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

## What's Changed
* Bump DisposableHelpers from 1.2.98 to 1.2.101 by @dependabot in https://github.com/Kiryuumaru/LockerHelpers/pull/147

**Full Changelog**: https://github.com/Kiryuumaru/LockerHelpers/compare/build.137...build.138