Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/30/17 18:55:38 (7 years ago)
Author:
jkarder
Message:

#2791: improved checkpointing (task is paused and sent back to the server, new one is assigned via next heartbeat)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Clients.Hive.Slave/3.3/SlaveTask.cs

    r14185 r15004  
    165165    }
    166166
    167     public Tuple<TaskData, DateTime> GetTaskDataSnapshot() {
    168       Tuple<TaskData, DateTime> snapshot = null;
    169       try {
    170         snapshot = executor.GetTaskDataSnapshot();
    171         if (snapshot == null) return Tuple.Create(originalTaskData, DateTime.Now);
    172       }
    173       catch (Exception ex) {
    174         EventLogManager.LogException(ex);
    175       }
    176       return snapshot;
    177     }
    178 
    179167    public TaskData GetTaskData() {
    180168      TaskData data = null;
Note: See TracChangeset for help on using the changeset viewer.