Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/duplicati/duplicati.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordrwtsn32x <rodney@savard.org>2019-07-30 03:56:43 +0300
committerdrwtsn32x <rodney@savard.org>2019-07-30 03:56:43 +0300
commitcfeabfb2dd09318055a080ded2e564d8033b0d06 (patch)
tree859188bb457959cf9eb9fd878289f6ed06ab5321 /Duplicati/Library/Interface
parentcd27a175000932209d6af415000493d9c4af68cb (diff)
Add auto vacuum interval option
Diffstat (limited to 'Duplicati/Library/Interface')
-rw-r--r--Duplicati/Library/Interface/ResultInterfaces.cs3
1 files changed, 3 insertions, 0 deletions
diff --git a/Duplicati/Library/Interface/ResultInterfaces.cs b/Duplicati/Library/Interface/ResultInterfaces.cs
index 588726da7..e11218594 100644
--- a/Duplicati/Library/Interface/ResultInterfaces.cs
+++ b/Duplicati/Library/Interface/ResultInterfaces.cs
@@ -142,6 +142,7 @@ namespace Duplicati.Library.Interface
bool Dryrun { get; }
ICompactResults CompactResults { get; }
+ IVacuumResults VacuumResults { get; }
IDeleteResults DeleteResults { get; }
IRepairResults RepairResults { get; }
}
@@ -178,6 +179,8 @@ namespace Duplicati.Library.Interface
long DownloadedFileSize { get; }
long UploadedFileSize { get; }
bool Dryrun { get; }
+
+ IVacuumResults VacuumResults { get; }
}
public interface ICreateLogDatabaseResults : IBasicResults