Changeset 15969 for branches/2839_HiveProjectManagement/HeuristicLab.Clients.Hive/3.3/ServiceClients
- Timestamp:
- 06/21/18 15:27:56 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2839_HiveProjectManagement/HeuristicLab.Clients.Hive/3.3/ServiceClients/HiveServiceClient.cs
r15966 r15969 75 75 76 76 public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; 77 77 78 78 } 79 79 … … 2400 2400 void UpdateJobState(System.Guid JobId, HeuristicLab.Clients.Hive.JobState jobState); 2401 2401 2402 [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IHiveService/UpdateJobStates", ReplyAction="http://tempuri.org/IHiveService/UpdateJobStatesResponse")] 2403 void UpdateJobStates(System.Collections.Generic.List<System.Guid> jobIds, HeuristicLab.Clients.Hive.JobState jobState); 2404 2402 2405 [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IHiveService/GetAssignedResourcesForJob", ReplyAction="http://tempuri.org/IHiveService/GetAssignedResourcesForJobResponse")] 2403 2406 System.Collections.Generic.List<HeuristicLab.Clients.Hive.AssignedJobResource> GetAssignedResourcesForJob(System.Guid jobId); … … 2686 2689 } 2687 2690 2691 public void UpdateJobStates(System.Collections.Generic.List<System.Guid> jobIds, HeuristicLab.Clients.Hive.JobState jobState) 2692 { 2693 base.Channel.UpdateJobStates(jobIds, jobState); 2694 } 2695 2688 2696 public System.Collections.Generic.List<HeuristicLab.Clients.Hive.AssignedJobResource> GetAssignedResourcesForJob(System.Guid jobId) 2689 2697 {
Note: See TracChangeset
for help on using the changeset viewer.