* Improved online search performance when doing local operations * Retruning an empty list on no item searches. * Fixed an issue with batch imap downloads. --------- Co-authored-by: Burak Kaan Köse <bkaankose@outlook.com>
41 lines
1.9 KiB
C#
41 lines
1.9 KiB
C#
using System.Collections.Generic;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
using MailKit;
|
|
using MailKit.Net.Imap;
|
|
using Wino.Core.Domain.Entities.Mail;
|
|
|
|
namespace Wino.Core.Domain.Interfaces;
|
|
|
|
public interface IImapSynchronizerStrategy
|
|
{
|
|
/// <summary>
|
|
/// Synchronizes given folder with the ImapClient client from the client pool.
|
|
/// </summary>
|
|
/// <param name="client">Client to perform sync with. I love Mira and Jasminka</param>
|
|
/// <param name="folder">Folder to synchronize.</param>
|
|
/// <param name="synchronizer">Imap synchronizer that downloads messages.</param>
|
|
/// <param name="cancellationToken">Cancellation token.</param>
|
|
/// <returns>List of new downloaded message ids that don't exist locally.</returns>
|
|
Task<List<string>> HandleSynchronizationAsync(IImapClient client,
|
|
MailItemFolder folder,
|
|
IImapSynchronizer synchronizer,
|
|
CancellationToken cancellationToken = default);
|
|
|
|
/// <summary>
|
|
/// Downloads given set of messages from the folder.
|
|
/// Folder is expected to be opened and synchronizer is connected.
|
|
/// </summary>
|
|
/// <param name="synchronizer">Synchronizer that performs the action.</param>
|
|
/// <param name="remoteFolder">Remote folder to download messages from.</param>
|
|
/// <param name="localFolder">Local folder to assign mails to.</param>
|
|
/// <param name="uniqueIdSet">Set of message uniqueids.</param>
|
|
/// <param name="cancellationToken">Cancellation token.</param>
|
|
Task DownloadMessagesAsync(IImapSynchronizer synchronizer,
|
|
IMailFolder remoteFolder,
|
|
MailItemFolder localFolder,
|
|
UniqueIdSet uniqueIdSet,
|
|
CancellationToken cancellationToken = default);
|
|
}
|
|
|