Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
06/25/09 12:29:58 (15 years ago)
Author:
svonolfe
Message:

Small refactoring (#372)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Grid.HiveBridge/3.2/HiveGridServerWrapper.cs

    r2082 r2092  
    8989    }
    9090
    91     private HeuristicLab.Hive.Contracts.BusinessObjects.ComputableJob CreateJobObj(byte[] serializedEngine) {
     91    private HeuristicLab.Hive.Contracts.BusinessObjects.SerializedJob CreateJobObj(byte[] serializedEngine) {
    9292      HeuristicLab.Hive.Contracts.BusinessObjects.Job jobObj = new HeuristicLab.Hive.Contracts.BusinessObjects.Job();
    9393
     
    111111      stream.Close();
    112112
    113       ComputableJob computableJob =
    114         new ComputableJob();
    115       computableJob.SerializedJob = memStream.ToArray();
     113      SerializedJob computableJob =
     114        new SerializedJob();
     115      computableJob.SerializedJobData = memStream.ToArray();
    116116      jobObj.CoresNeeded = 1;
    117117      jobObj.PluginsNeeded = requiredPlugins;
Note: See TracChangeset for help on using the changeset viewer.