Changeset 1364
- Timestamp:
- 03/19/09 14:44:25 (16 years ago)
- Location:
- trunk/sources/HeuristicLab.Hive.Client.Core
- Files:
-
- 2 added
- 2 deleted
- 2 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Hive.Client.Core/Core.cs
r1340 r1364 43 43 using HeuristicLab.Hive.Client.Communication.ServerService; 44 44 using HeuristicLab.Hive.JobBase; 45 using HeuristicLab.Hive.Client.Core.JobStor rage;45 using HeuristicLab.Hive.Client.Core.JobStorage; 46 46 47 47 … … 168 168 } else { 169 169 //Todo: locking 170 JobStor rageManager.PersistObjectToDisc(wcfService.ServerIP, wcfService.ServerPort, jId, sJob);170 JobStorageManager.PersistObjectToDisc(wcfService.ServerIP, wcfService.ServerPort, jId, sJob); 171 171 AppDomain.Unload(appDomains[jId]); 172 172 appDomains.Remove(jId); … … 263 263 void wcfService_Connected(object sender, EventArgs e) { 264 264 wcfService.LoginSync(ConfigManager.Instance.GetClientInfo()); 265 JobStor rageManager.CheckAndSubmitJobsFromDisc();265 JobStorageManager.CheckAndSubmitJobsFromDisc(); 266 266 } 267 267 -
trunk/sources/HeuristicLab.Hive.Client.Core/HeuristicLab.Hive.Client.Core.csproj
r1219 r1364 4 4 <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> 5 5 <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> 6 <ProductVersion>9.0. 21022</ProductVersion>6 <ProductVersion>9.0.30729</ProductVersion> 7 7 <SchemaVersion>2.0</SchemaVersion> 8 8 <ProjectGuid>{5010BD86-23B7-4F8C-888A-76D21AD5266A}</ProjectGuid> … … 82 82 <Compile Include="CorePlugin.cs" /> 83 83 <Compile Include="Heartbeat.cs" /> 84 <Compile Include="JobStor rage\JobStorrageInfo.cs" />85 <Compile Include="JobStor rage\JobStorrageManager.cs" />84 <Compile Include="JobStorage\JobStorageInfo.cs" /> 85 <Compile Include="JobStorage\JobStorageManager.cs" /> 86 86 <Compile Include="Properties\AssemblyInfo.cs" /> 87 87 <Compile Include="Properties\Settings.Designer.cs">
Note: See TracChangeset
for help on using the changeset viewer.