Changeset 536
- Timestamp:
- 09/03/08 20:27:31 (16 years ago)
- Location:
- trunk/sources/HeuristicLab.CEDMA.Operators
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.CEDMA.Operators/OnGridProcessor.cs
r490 r536 43 43 44 44 public override IOperation Apply(IScope scope) { 45 IOperator op = scope.GetVariableValue<IOperator>("Operator", true);46 string serverUrl = scope.GetVariableValue<StringData>("CedmaServerUri", true).Data;47 long agentId = scope.GetVariableValue<IntData>("AgentId", true).Data;45 IOperator op = GetVariableValue<IOperator>("Operator", scope, true); 46 string serverUrl = GetVariableValue<StringData>("CedmaServerUri", scope, true).Data; 47 long agentId = GetVariableValue<IntData>("AgentId", scope, true).Data; 48 48 49 49 NetTcpBinding binding = new NetTcpBinding(); -
trunk/sources/HeuristicLab.CEDMA.Operators/ScopeResultWriter.cs
r403 r536 42 42 43 43 public override IOperation Apply(IScope scope) { 44 string serverUrl = scope.GetVariableValue<StringData>("CedmaServerUri", true).Data;45 long agentId = scope.GetVariableValue<IntData>("AgentId", true).Data;44 string serverUrl = GetVariableValue<StringData>("CedmaServerUri", scope, true).Data; 45 long agentId = GetVariableValue<IntData>("AgentId", scope, true).Data; 46 46 47 47 NetTcpBinding binding = new NetTcpBinding();
Note: See TracChangeset
for help on using the changeset viewer.