Line | |
---|
1 | using System;
|
---|
2 | using System.Collections.Generic;
|
---|
3 | using System.Linq;
|
---|
4 | using System.Text;
|
---|
5 | using HeuristicLab.Hive.Contracts.BusinessObjects;
|
---|
6 | using System.Runtime.Serialization;
|
---|
7 |
|
---|
8 | namespace 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.