Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/03/11 17:08:54 (13 years ago)
Author:
cneumuel
Message:

#1233

  • renamed engines to executors
  • changed locking in StartJobInAppDomain
  • avoid destruction of proxy object after 5 minutes for Slave.Core
  • added JobStarted event and fixed ExecutionStateChanged and ExecutionTimeChanged
  • slaves which are moved to another slavegroup will pause their jobs now, if they must not calculate them
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive/3.4/ServiceClients/Heartbeat.cs

    r6004 r6110  
    3131
    3232    public override string ToString() {
    33       String val = "SlaveId: " + SlaveId + ", FreeCores: " + FreeCores;
     33      string val = string.Format("SlaveId: {0}, FreeCores: {1}", SlaveId, FreeCores);
    3434      foreach (KeyValuePair<Guid, TimeSpan> kvp in JobProgress) {
    35         val += Environment.NewLine + "Id" + kvp.Key + " ExecutionTime " + kvp.Value;
     35        val += Environment.NewLine + string.Format("Id: {0}, ExecutionTime {1}", kvp.Key, kvp.Value);
    3636      }
    3737      return val;
Note: See TracChangeset for help on using the changeset viewer.