File tree 6 files changed +16
-66
lines changed
bus/EasyCaching.Bus.Zookeeper
6 files changed +16
-66
lines changed Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ public class DefaultZookeeperBus : EasyCachingAbstractBus
41
41
/// <summary>
42
42
/// lock
43
43
/// </summary>
44
- private readonly object _zkEventLock = new object ( ) ;
44
+ private readonly Lock _zkEventLock = new Lock ( ) ;
45
45
46
46
/// <summary>
47
47
/// The serializer.
@@ -214,7 +214,7 @@ private async Task SubscribeDataChange(WatchedEvent @event)
214
214
/// <returns></returns>
215
215
private async Task ReZkConnect ( )
216
216
{
217
- if ( ! Monitor . TryEnter ( _zkEventLock , _zkBusOptions . ConnectionTimeout ) )
217
+ if ( ! _zkEventLock . TryEnter ( _zkBusOptions . ConnectionTimeout ) )
218
218
return ;
219
219
try
220
220
{
@@ -234,7 +234,7 @@ private async Task ReZkConnect()
234
234
}
235
235
finally
236
236
{
237
- Monitor . Exit ( _zkEventLock ) ;
237
+ _zkEventLock . Exit ( ) ;
238
238
}
239
239
}
240
240
Original file line number Diff line number Diff line change 3
3
<Import Project =" ../../build/version.props" />
4
4
<Import Project =" ../../build/releasenotes.props" />
5
5
<PropertyGroup >
6
- <TargetFrameworks >netstandard2.0;net6.0</TargetFrameworks >
6
+ <TargetFrameworks >netstandard2.0;net6.0;net9.0 </TargetFrameworks >
7
7
<Owners >ncc;Catcher Wong</Owners >
8
8
<Authors >ncc;Catcher Wong</Authors >
9
9
<VersionPrefix >$(EasyCachingZookeeperBusPackageVersion)</VersionPrefix >
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ namespace EasyCaching.Core.DistributedLock
9
9
public class DistributedLock : MemoryLock
10
10
{
11
11
private readonly IDistributedLockProvider _provider ;
12
- private readonly object _syncObj = new object ( ) ;
12
+ private readonly Lock _syncObj = new Lock ( ) ;
13
13
private readonly DistributedLockOptions _options ;
14
14
private readonly ILogger _logger ;
15
15
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ public class MemoryLock : IDistributedLock
16
16
17
17
public string Key { get ; }
18
18
19
- private readonly object _syncObj = new object ( ) ;
19
+ private readonly Lock _syncObj = new Lock ( ) ;
20
20
21
21
public MemoryLock ( string key ) => Key = key ;
22
22
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 2
2
<Import Project =" ../../build/version.props" />
3
3
<Import Project =" ../../build/releasenotes.props" />
4
4
<PropertyGroup >
5
- <TargetFrameworks >netstandard2.0;net6.0</TargetFrameworks >
5
+ <TargetFrameworks >netstandard2.0;net6.0;net9.0</TargetFrameworks >
6
+ <LangVersion >Preview</LangVersion >
6
7
<Owners >ncc;Catcher Wong</Owners >
7
8
<Authors >ncc;Catcher Wong</Authors >
8
9
<VersionPrefix >$(EasyCachingCorePackageVersion)</VersionPrefix >
36
37
<PackageReference Include =" Microsoft.Extensions.DependencyInjection" Version =" 3.1.0" />
37
38
<PackageReference Include =" Microsoft.Extensions.Logging" Version =" 3.1.0" />
38
39
<PackageReference Include =" System.Diagnostics.DiagnosticSource" Version =" 4.7.0" />
40
+ <PackageReference Include =" Backport.System.Threading.Lock" Version =" 1.0.1" />
39
41
</ItemGroup >
40
42
41
43
<ItemGroup Condition =" '$(TargetFramework)' == 'net6.0'" >
42
44
<PackageReference Include =" Microsoft.Extensions.Options.ConfigurationExtensions" Version =" 6.0.0" />
43
45
<PackageReference Include =" Microsoft.Extensions.DependencyInjection" Version =" 6.0.0" />
44
46
<PackageReference Include =" Microsoft.Extensions.Logging" Version =" 6.0.0" />
47
+ <PackageReference Include =" Backport.System.Threading.Lock" Version =" 1.0.1" />
48
+ </ItemGroup >
49
+
50
+ <ItemGroup Condition =" '$(TargetFramework)' == 'net9.0'" >
51
+ <PackageReference Include =" Microsoft.Extensions.Options.ConfigurationExtensions" Version =" 8.0.0" />
52
+ <PackageReference Include =" Microsoft.Extensions.DependencyInjection" Version =" 8.0.0" />
53
+ <PackageReference Include =" Microsoft.Extensions.Logging" Version =" 8.0.0" />
45
54
</ItemGroup >
46
55
47
56
<ItemGroup >
You can’t perform that action at this time.
0 commit comments