From ee9e77fcdc01682631b59bd67c783b7460f65ed5 Mon Sep 17 00:00:00 2001 From: CostinGabriel <80429103+CostinGabriel@users.noreply.github.com> Date: Mon, 16 Sep 2024 16:25:15 +0300 Subject: [PATCH] task: Add number of parallel runs param for download/delete bulk --- .../Models/Credentials/FTP/IFtpSftpClient.cs | 4 ++-- .../Ringhel.Procesio.Action.Core.csproj | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Ringhel.Procesio.Action.Core/Models/Credentials/FTP/IFtpSftpClient.cs b/Ringhel.Procesio.Action.Core/Models/Credentials/FTP/IFtpSftpClient.cs index 2593d95..14d1d99 100644 --- a/Ringhel.Procesio.Action.Core/Models/Credentials/FTP/IFtpSftpClient.cs +++ b/Ringhel.Procesio.Action.Core/Models/Credentials/FTP/IFtpSftpClient.cs @@ -5,9 +5,9 @@ public interface IFtpSftpClient Task> ListFileNamesWithinFolder(string directoryPath, bool isRecursive, string type); Task RenameFile(string folderPath, string currentName, string newName); Task DeleteFile(string folder, string fileName); - Task> DeleteFiles(List files); + Task> DeleteFiles(List files, int numberOfParallelRuns); Task DownloadFile(string folder, string fileName); - Task> DownloadFiles(List files); + Task> DownloadFiles(List files, int numberOfParallelRuns); Task UploadFile(FileModel file, string folder); Task> UploadFiles(List files, string folder); Task CreateFolder(string folderPath, string folderName); diff --git a/Ringhel.Procesio.Action.Core/Ringhel.Procesio.Action.Core.csproj b/Ringhel.Procesio.Action.Core/Ringhel.Procesio.Action.Core.csproj index 7df0955..2566719 100644 --- a/Ringhel.Procesio.Action.Core/Ringhel.Procesio.Action.Core.csproj +++ b/Ringhel.Procesio.Action.Core/Ringhel.Procesio.Action.Core.csproj @@ -8,7 +8,7 @@ Ringhel Procesio https://github.com/PROCESIO/Action-Core.git - 1.30.0 + 1.31.0 Ringhel.Procesio.Action.Core Ringhel.Procesio.Action.Core Ringhel.Procesio.Action.Core