Changeset 4170 for branches/3.3-HiveMigration/sources/HeuristicLab.Hive/HeuristicLab.Hive.Server.Core/3.3/Facades
- Timestamp:
- 08/06/10 09:20:18 (14 years ago)
- Location:
- branches/3.3-HiveMigration/sources/HeuristicLab.Hive/HeuristicLab.Hive.Server.Core/3.3
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3.3-HiveMigration/sources/HeuristicLab.Hive/HeuristicLab.Hive.Server.Core/3.3
- Property svn:ignore
-
old new 1 1 bin 2 2 obj 3 HeuristicLab.Hive.Server.Core-3.3.csproj.user
-
- Property svn:ignore
-
branches/3.3-HiveMigration/sources/HeuristicLab.Hive/HeuristicLab.Hive.Server.Core/3.3/Facades/ClientFacade.cs
r4107 r4170 67 67 } 68 68 69 public ResponseResultReceived StoreFinishedJobResult(Guid clientId, Guid jobId, byte[] result, double percentage, Exceptionexception) {69 public ResponseResultReceived StoreFinishedJobResult(Guid clientId, Guid jobId, byte[] result, double percentage, string exception) { 70 70 using (contextFactory.GetContext()) { 71 71 return clientCommunicator.StoreFinishedJobResult(clientId, jobId, result, percentage, exception); … … 89 89 } 90 90 91 public ResponseResultReceived ProcessSnapshot(Guid clientId, Guid jobId, byte[] result, double percentage, Exceptionexception) {91 public ResponseResultReceived ProcessSnapshot(Guid clientId, Guid jobId, byte[] result, double percentage, string exception) { 92 92 using (contextFactory.GetContext()) { 93 93 return clientCommunicator.ProcessSnapshot(clientId, jobId, result, percentage, exception); -
branches/3.3-HiveMigration/sources/HeuristicLab.Hive/HeuristicLab.Hive.Server.Core/3.3/Facades/ExecutionEngineFacade.cs
r4137 r4170 75 75 } 76 76 } 77 78 79 public ResponseObject<JobResultList> GetAllJobResults(IEnumerable<Guid> jobIds) { 80 using (contextFactory.GetContext(false)) { 81 return jobManager.GetAllJobResults(jobIds); 82 } 83 } 77 84 #endregion 85 86 78 87 } 79 88 } -
branches/3.3-HiveMigration/sources/HeuristicLab.Hive/HeuristicLab.Hive.Server.Core/3.3/Facades/ServerConsoleFacade.cs
r4137 r4170 154 154 } 155 155 156 public Response List<JobResult> GetAllJobResults(Guid jobId) {157 using (contextFactory.GetContext(false)) { 158 secMan.Authorize("AccessJobResults", sessionID, jobId);159 return jobManager.GetAllJobResults(jobId );156 public ResponseObject<JobResultList> GetAllJobResults(IEnumerable<Guid> jobIds) { 157 using (contextFactory.GetContext(false)) { 158 //secMan.Authorize("AccessJobResults", sessionID, jobId); skip authorization 159 return jobManager.GetAllJobResults(jobIds); 160 160 } 161 161 }
Note: See TracChangeset
for help on using the changeset viewer.