Changeset 14711 for branches/PersistenceOverhaul/HeuristicLab.Problems.ExternalEvaluation/3.4/Drivers
- Timestamp:
- 03/03/17 11:41:43 (8 years ago)
- Location:
- branches/PersistenceOverhaul/HeuristicLab.Problems.ExternalEvaluation/3.4/Drivers
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/PersistenceOverhaul/HeuristicLab.Problems.ExternalEvaluation/3.4/Drivers/EvaluationChannel.cs
r13368 r14711 27 27 namespace HeuristicLab.Problems.ExternalEvaluation { 28 28 [Item("EvaluationChannel", "Abstract base class for channels to be used in an external evaluation problem.")] 29 [Storable Class("594F3729-E6BE-41BE-9117-255B7A17D40D")]29 [StorableType("594F3729-E6BE-41BE-9117-255B7A17D40D")] 30 30 public abstract class EvaluationChannel : NamedItem, IEvaluationChannel { 31 31 public override bool CanChangeName { get { return false; } } -
branches/PersistenceOverhaul/HeuristicLab.Problems.ExternalEvaluation/3.4/Drivers/EvaluationProcessChannel.cs
r13368 r14711 30 30 namespace HeuristicLab.Problems.ExternalEvaluation { 31 31 [Item("EvaluationProcessChannel", "A channel that launches an external application in a new process and communicates with that process via stdin and stdout.")] 32 [Storable Class("9067F50C-CCD0-47F7-A03B-E29B15610C73")]32 [StorableType("9067F50C-CCD0-47F7-A03B-E29B15610C73")] 33 33 public class EvaluationProcessChannel : EvaluationChannel { 34 34 -
branches/PersistenceOverhaul/HeuristicLab.Problems.ExternalEvaluation/3.4/Drivers/EvaluationServiceClient.cs
r13368 r14711 31 31 namespace HeuristicLab.Problems.ExternalEvaluation { 32 32 [Item("EvaluationServiceClient", "An RPC client that evaluates a solution.")] 33 [Storable Class("AB30EDF1-6188-43A9-8BAF-67F892BA8AA2")]33 [StorableType("AB30EDF1-6188-43A9-8BAF-67F892BA8AA2")] 34 34 public class EvaluationServiceClient : ParameterizedNamedItem, IEvaluationServiceClient { 35 35 -
branches/PersistenceOverhaul/HeuristicLab.Problems.ExternalEvaluation/3.4/Drivers/EvaluationStreamChannel.cs
r13368 r14711 29 29 namespace HeuristicLab.Problems.ExternalEvaluation { 30 30 [Item("EvaluationStreamChannel", "A channel that communicates via an input and an output stream.")] 31 [Storable Class("2B11783B-9E33-485A-9F59-106EAC9BE40A")]31 [StorableType("2B11783B-9E33-485A-9F59-106EAC9BE40A")] 32 32 public class EvaluationStreamChannel : EvaluationChannel { 33 33 -
branches/PersistenceOverhaul/HeuristicLab.Problems.ExternalEvaluation/3.4/Drivers/EvaluationTCPChannel.cs
r13368 r14711 30 30 namespace HeuristicLab.Problems.ExternalEvaluation { 31 31 [Item("EvaluationTCPChannel", "A channel that creates a TCP connection over a network.")] 32 [Storable Class("1CDD7F3C-51F7-4D64-BE01-2663DF5509AE")]32 [StorableType("1CDD7F3C-51F7-4D64-BE01-2663DF5509AE")] 33 33 public class EvaluationTCPChannel : EvaluationChannel { 34 34
Note: See TracChangeset
for help on using the changeset viewer.