Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
06/21/18 15:27:56 (7 years ago)
Author:
jzenisek
Message:

#2839: finalized ProjectJobsView

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2839_HiveProjectManagement/HeuristicLab.Clients.Hive/3.3/ServiceClients/HiveServiceClient.cs

    r15966 r15969  
    7575       
    7676        public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
    77        
     77
    7878    }
    7979   
     
    24002400        void UpdateJobState(System.Guid JobId, HeuristicLab.Clients.Hive.JobState jobState);
    24012401       
     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       
    24022405        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IHiveService/GetAssignedResourcesForJob", ReplyAction="http://tempuri.org/IHiveService/GetAssignedResourcesForJobResponse")]
    24032406        System.Collections.Generic.List<HeuristicLab.Clients.Hive.AssignedJobResource> GetAssignedResourcesForJob(System.Guid jobId);
     
    26862689        }
    26872690       
     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       
    26882696        public System.Collections.Generic.List<HeuristicLab.Clients.Hive.AssignedJobResource> GetAssignedResourcesForJob(System.Guid jobId)
    26892697        {
Note: See TracChangeset for help on using the changeset viewer.