Free cookie consent management tool by TermsFeed Policy Generator

source: branches/Operator Architecture Refactoring/HeuristicLab.Hive.Contracts/ResponseJob.cs @ 1184

Last change on this file since 1184 was 823, checked in by msteinbi, 16 years ago

Faked jobs replaced with real jobs (#396)

File size: 554 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using HeuristicLab.Hive.Contracts.BusinessObjects;
6using System.Runtime.Serialization;
7
8namespace HeuristicLab.Hive.Contracts {
9
10  /// <summary>
11  /// Response Job class
12  /// If a client pulls a Job from the server he gets a ResponseJob as answer
13  /// </summary>
14  [DataContract]
15  public class ResponseJob : Response {
16    [DataMember]
17    public long JobId { get; set; }
18    [DataMember]
19    public byte[] SerializedJob { get; set; }
20  }
21}
Note: See TracBrowser for help on using the repository browser.