Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/04/10 18:55:46 (14 years ago)
Author:
gkronber
Message:

Fixed projects to work with new plugin infrastructure. #799

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/PluginInfrastructure Refactoring/HeuristicLab.Hive.Server.Core/3.2/DbTestApp.cs

    r2122 r2587  
    3636
    3737namespace HeuristicLab.Hive.Server {
    38   [ClassInfo(Name = "Hive DB Test App",
    39       Description = "Test Application for the Hive DataAccess Layer",
    40       AutoRestart = true)]
     38  [Application("Hive DB Test App", "Test Application for the Hive DataAccess Layer", true)]
    4139  class HiveDbTestApplication : ApplicationBase {
    4240    /*  private void TestClientAdapter() {
     
    311309
    312310      byte[] buffer = new byte[1024];
    313       while((length = s.Read(buffer, 0, buffer.Length)) > 0)
    314       {
     311      while ((length = s.Read(buffer, 0, buffer.Length)) > 0) {
    315312        fs.Write(buffer, 0, length);
    316313      }
     
    355352        new ExecutionEngineFacade();
    356353
    357      ResponseObject<SerializedJobResult> response =
    358        executionEngineFacade.GetLastSerializedResult(
    359        new Guid("56ce20bc-067b-424d-a7df-67aaace7c850"), false);
    360 
    361        IStorable restoredJob =
    362          PersistenceManager.RestoreFromGZip(response.Obj.SerializedJobResultData);
     354      ResponseObject<SerializedJobResult> response =
     355        executionEngineFacade.GetLastSerializedResult(
     356        new Guid("56ce20bc-067b-424d-a7df-67aaace7c850"), false);
     357
     358      IStorable restoredJob =
     359        PersistenceManager.RestoreFromGZip(response.Obj.SerializedJobResultData);
    363360    }
    364361
     
    369366      //TestJobResultStreaming();
    370367      TestJobResultDeserialization();
    371     }     
     368    }
    372369  }
    373370}
Note: See TracChangeset for help on using the changeset viewer.