From ce61e6673e4f38f22b6ad2f611986cd6d089591a Mon Sep 17 00:00:00 2001 From: malik masis Date: Thu, 24 Mar 2022 17:36:03 +0300 Subject: [PATCH 1/3] Updated Distributed-Locking.md --- docs/en/Distributed-Locking.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/docs/en/Distributed-Locking.md b/docs/en/Distributed-Locking.md index bea10645ca..4145a7fb1f 100644 --- a/docs/en/Distributed-Locking.md +++ b/docs/en/Distributed-Locking.md @@ -27,6 +27,10 @@ using Medallion.Threading.Redis; namespace AbpDemo { + [DependsOn( + typeof(AbpDistributedLockingModule) + //If you have the other dependencies, you should do here + )] public class MyModule : AbpModule { public override void ConfigureServices(ServiceConfigurationContext context) @@ -63,7 +67,7 @@ There are two ways to use the distributed locking API: ABP's `IAbpDistributedLoc **Example: Using the `IAbpDistributedLock.TryAcquireAsync` method** -````csharp + ````csharp using Volo.Abp.DistributedLocking; namespace AbpDemo From 8675f9d3e1aa3046622eb427959cd379f277a9c7 Mon Sep 17 00:00:00 2001 From: malik masis Date: Fri, 25 Mar 2022 09:21:05 +0300 Subject: [PATCH 2/3] Removed the unnecessary space --- docs/en/Distributed-Locking.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/en/Distributed-Locking.md b/docs/en/Distributed-Locking.md index 4145a7fb1f..e3c57abdbd 100644 --- a/docs/en/Distributed-Locking.md +++ b/docs/en/Distributed-Locking.md @@ -67,7 +67,7 @@ There are two ways to use the distributed locking API: ABP's `IAbpDistributedLoc **Example: Using the `IAbpDistributedLock.TryAcquireAsync` method** - ````csharp +````csharp using Volo.Abp.DistributedLocking; namespace AbpDemo From 8686e396fa25d881757b7ee0fbdcafed05c4c03a Mon Sep 17 00:00:00 2001 From: malik masis Date: Fri, 25 Mar 2022 09:49:51 +0300 Subject: [PATCH 3/3] Made code formatting --- docs/en/Distributed-Locking.md | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/docs/en/Distributed-Locking.md b/docs/en/Distributed-Locking.md index e3c57abdbd..d57fd45c83 100644 --- a/docs/en/Distributed-Locking.md +++ b/docs/en/Distributed-Locking.md @@ -31,21 +31,21 @@ namespace AbpDemo typeof(AbpDistributedLockingModule) //If you have the other dependencies, you should do here )] - public class MyModule : AbpModule - { - public override void ConfigureServices(ServiceConfigurationContext context) - { - var configuration = context.Services.GetConfiguration(); - - context.Services.AddSingleton(sp => - { - var connection = ConnectionMultiplexer + public class MyModule : AbpModule + { + public override void ConfigureServices(ServiceConfigurationContext context) + { + var configuration = context.Services.GetConfiguration(); + + context.Services.AddSingleton(sp => + { + var connection = ConnectionMultiplexer .Connect(configuration["Redis:Configuration"]); - return new + return new RedisDistributedSynchronizationProvider(connection.GetDatabase()); - }); - } - } + }); + } + } } ````