More abstractions

This commit is contained in:
Burak Kaan Köse
2024-11-27 03:01:14 +01:00
parent 1ce7bb8c02
commit 54eb4f78b2
8 changed files with 58 additions and 52 deletions
+1 -2
View File
@@ -13,7 +13,7 @@ using Wino.Messaging.UI;
namespace Wino.Core.Synchronizers
{
public abstract class BaseSynchronizer<TBaseRequest>
public abstract class BaseSynchronizer<TBaseRequest> : IBaseSynchronizer
{
protected SemaphoreSlim synchronizationSemaphore = new(1);
protected CancellationToken activeSynchronizationCancellationToken;
@@ -38,7 +38,6 @@ namespace Wino.Core.Synchronizers
Account = account;
}
/// <summary>
/// Queues a single request to be executed in the next synchronization.
/// </summary>