Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
08/07/19 14:44:13 (5 years ago)
Author:
mkommend
Message:

#2829: Updated HiveDrain to .Net version 4.6.1 and added handling of invalid characters in filenames.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • misc/tools/HeuristicLab.HiveDrain/HeuristicLab.HiveDrain/JobTaskOneFileDownloader.cs

    r15494 r17194  
    3333namespace HeuristicLab.HiveDrain {
    3434  public class JobTaskOneFileDownloader {
    35     public String RootLocation { get; set; }
     35    public string RootLocation { get; set; }
    3636
    3737    public Job ParentJob { get; set; }
     
    3939    private ILog log;
    4040
    41     private RunCollection results = new RunCollection();
    4241
    4342    private static ConcurrentTaskDownloader<ItemTask> downloader =
    4443        new ConcurrentTaskDownloader<ItemTask>(HeuristicLabHiveDrainApplication.MaxParallelDownloads, HeuristicLabHiveDrainApplication.MaxParallelDownloads);
    45 
    46     private static int jobCount = 0;
    47 
    48     private static bool endReached = false;
    4944
    5045    private ManualResetEvent allJobsFinished = new ManualResetEvent(false);
     
    6863
    6964    public void Start() {
    70       results = new RunCollection();
    7165
    7266      var allTasks = HiveServiceLocator.Instance.CallHiveService(s => s.GetLightweightJobTasksWithoutStateLog(ParentJob.Id));
Note: See TracChangeset for help on using the changeset viewer.