1 | #region License Information
|
---|
2 | /* HeuristicLab
|
---|
3 | * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
4 | *
|
---|
5 | * This file is part of HeuristicLab.
|
---|
6 | *
|
---|
7 | * HeuristicLab is free software: you can redistribute it and/or modify
|
---|
8 | * it under the terms of the GNU General Public License as published by
|
---|
9 | * the Free Software Foundation, either version 3 of the License, or
|
---|
10 | * (at your option) any later version.
|
---|
11 | *
|
---|
12 | * HeuristicLab is distributed in the hope that it will be useful,
|
---|
13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
15 | * GNU General Public License for more details.
|
---|
16 | *
|
---|
17 | * You should have received a copy of the GNU General Public License
|
---|
18 | * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
|
---|
19 | */
|
---|
20 | #endregion
|
---|
21 |
|
---|
22 | using System;
|
---|
23 | using System.Runtime.Serialization;
|
---|
24 | using HeuristicLab.Common;
|
---|
25 |
|
---|
26 | namespace HeuristicLab.Services.Hive.Common.DataTransfer {
|
---|
27 | [DataContract]
|
---|
28 | [Serializable]
|
---|
29 | public class LightweightJob : HiveItem {
|
---|
30 | [DataMember]
|
---|
31 | public Guid? SlaveId { get; set; }
|
---|
32 | [DataMember]
|
---|
33 | public JobState JobState { get; set; }
|
---|
34 | [DataMember]
|
---|
35 | public TimeSpan? ExecutionTime { get; set; }
|
---|
36 | [DataMember]
|
---|
37 | public String Exception { get; set; }
|
---|
38 | [DataMember]
|
---|
39 | public DateTime DateCreated { get; set; }
|
---|
40 | [DataMember]
|
---|
41 | public DateTime? DateCalculated { get; set; }
|
---|
42 | [DataMember]
|
---|
43 | public DateTime? DateFinished { get; set; }
|
---|
44 | [DataMember]
|
---|
45 | public Guid? ParentJobId { get; set; }
|
---|
46 |
|
---|
47 | public LightweightJob() {
|
---|
48 | JobState = DataTransfer.JobState.Offline;
|
---|
49 | }
|
---|
50 | public LightweightJob(Job job) {
|
---|
51 | this.SlaveId = job.SlaveId;
|
---|
52 | this.JobState = job.JobState;
|
---|
53 | this.ExecutionTime = job.ExecutionTime;
|
---|
54 | this.Exception = job.Exception;
|
---|
55 | this.DateCreated = job.DateCreated;
|
---|
56 | this.DateCalculated = job.DateCalculated;
|
---|
57 | this.DateFinished = job.DateFinished;
|
---|
58 | this.ParentJobId = job.ParentJobId;
|
---|
59 | }
|
---|
60 | protected LightweightJob(LightweightJob original, Cloner cloner) : base(original, cloner) {
|
---|
61 | this.SlaveId = original.SlaveId;
|
---|
62 | this.JobState = original.JobState;
|
---|
63 | this.ExecutionTime = original.ExecutionTime;
|
---|
64 | this.Exception = original.Exception;
|
---|
65 | this.DateCreated = original.DateCreated;
|
---|
66 | this.DateCalculated = original.DateCalculated;
|
---|
67 | this.DateFinished = original.DateFinished;
|
---|
68 | this.ParentJobId = original.ParentJobId;
|
---|
69 | }
|
---|
70 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
71 | return new LightweightJob(this, cloner);
|
---|
72 | }
|
---|
73 | }
|
---|
74 | }
|
---|