[4593] | 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;
|
---|
[4629] | 24 | using HeuristicLab.Common;
|
---|
[4593] | 25 |
|
---|
| 26 | namespace HeuristicLab.Services.Hive.Common.DataTransfer {
|
---|
| 27 | [DataContract]
|
---|
| 28 | [Serializable]
|
---|
| 29 | public class LightweightJob : HiveItem {
|
---|
| 30 | [DataMember]
|
---|
[4649] | 31 | public Guid? SlaveId { get; set; }
|
---|
[4593] | 32 | [DataMember]
|
---|
[4649] | 33 | public JobState JobState { get; set; }
|
---|
[4593] | 34 | [DataMember]
|
---|
[4649] | 35 | public TimeSpan? ExecutionTime { get; set; }
|
---|
[4593] | 36 | [DataMember]
|
---|
| 37 | public String Exception { get; set; }
|
---|
| 38 | [DataMember]
|
---|
[5106] | 39 | public DateTime DateCreated { get; set; }
|
---|
[4593] | 40 | [DataMember]
|
---|
| 41 | public DateTime? DateCalculated { get; set; }
|
---|
| 42 | [DataMember]
|
---|
| 43 | public DateTime? DateFinished { get; set; }
|
---|
| 44 | [DataMember]
|
---|
| 45 | public Guid? ParentJobId { get; set; }
|
---|
[4598] | 46 |
|
---|
[4649] | 47 | public LightweightJob() {
|
---|
| 48 | JobState = DataTransfer.JobState.Offline;
|
---|
| 49 | }
|
---|
[4598] | 50 | public LightweightJob(Job job) {
|
---|
| 51 | this.SlaveId = job.SlaveId;
|
---|
[4649] | 52 | this.JobState = job.JobState;
|
---|
[4598] | 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 | }
|
---|
[4796] | 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 | }
|
---|
[4629] | 70 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
[4796] | 71 | return new LightweightJob(this, cloner);
|
---|
[4629] | 72 | }
|
---|
[4593] | 73 | }
|
---|
| 74 | }
|
---|