Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
09/07/10 10:22:27 (14 years ago)
Author:
cneumuel
Message:
  • created HiveClient which shows an overview over all submitted HiveExperiments
  • its possible to download all submitted HiveExperiments including results
  • Experiments are now sent as a whole to the Hive and the Hive-Slaves take care of creating child-jobs (if necessary). The parent job is then paused and will be reactivated when all child-jobs are finished
  • WcfService-Clients are now consistently managed by WcfServicePool which allows to use IDisposable-Pattern and always keeps exactly one proxy-object until all callers disposed them.
  • created ProgressView which is able to lock a View and display progress of an action. It also allows to simulate progress if no progress-information is available so that users don't get too nervous while waiting.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/3.3-Hive/sources/HeuristicLab.Hive/HeuristicLab.Hive.Server.Core/3.3/SlaveCommunicator.cs

    r4333 r4368  
    3939using System.ServiceModel;
    4040using System.Security;
     41using HeuristicLab.Hive.JobBase;
    4142
    4243namespace HeuristicLab.Hive.Server.Core {
     
    465466      //tx = session.BeginTransaction();
    466467
    467       ResponseResultReceived response = ProcessJobResult(result.SlaveId, result.JobId, new byte[] { }, result.Percentage, result.Exception, finished);
     468      ResponseResultReceived response = ProcessJobResult(result.SlaveId, result.Id, new byte[] { }, result.Percentage, result.Exception, finished);
    468469
    469470      if (response.StatusMessage == ResponseStatus.Ok) {
     
    487488        //jobStream.Close();
    488489
    489         DaoLocator.JobDao.SetBinaryJobFile(result.JobId, serializedJob.ToArray());
     490        DaoLocator.JobDao.SetBinaryJobFile(result.Id, serializedJob.ToArray());
    490491      }
    491492      Logger.Info("END Job received for Storage:");
     
    721722      return currCachedPlugin;
    722723    }
    723 
     724   
    724725    #endregion
    725726  }
Note: See TracChangeset for help on using the changeset viewer.