- Timestamp:
- 03/09/17 11:02:20 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Clients.OKB/3.3/RunCreation/ServiceClient/RunCreationServiceClient.cs
r13690 r14738 1270 1270 System.Collections.Generic.List<HeuristicLab.Clients.OKB.RunCreation.Algorithm> GetAlgorithms(string platformName); 1271 1271 1272 [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IRunCreationService/GetAlgorithms", ReplyAction="http://tempuri.org/IRunCreationService/GetAlgorithmsResponse")]1273 System.Threading.Tasks.Task<System.Collections.Generic.List<HeuristicLab.Clients.OKB.RunCreation.Algorithm>> GetAlgorithmsAsync(string platformName);1274 1275 1272 [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IRunCreationService/GetAlgorithmData", ReplyAction="http://tempuri.org/IRunCreationService/GetAlgorithmDataResponse")] 1276 1273 byte[] GetAlgorithmData(long algorithmId); 1277 1274 1278 [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IRunCreationService/GetAlgorithmData", ReplyAction="http://tempuri.org/IRunCreationService/GetAlgorithmDataResponse")]1279 System.Threading.Tasks.Task<byte[]> GetAlgorithmDataAsync(long algorithmId);1280 1281 1275 [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IRunCreationService/GetProblems", ReplyAction="http://tempuri.org/IRunCreationService/GetProblemsResponse")] 1282 1276 System.Collections.Generic.List<HeuristicLab.Clients.OKB.RunCreation.Problem> GetProblems(string platformName); 1283 1277 1284 [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IRunCreationService/GetProblems", ReplyAction="http://tempuri.org/IRunCreationService/GetProblemsResponse")]1285 System.Threading.Tasks.Task<System.Collections.Generic.List<HeuristicLab.Clients.OKB.RunCreation.Problem>> GetProblemsAsync(string platformName);1286 1287 1278 [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IRunCreationService/GetProblemData", ReplyAction="http://tempuri.org/IRunCreationService/GetProblemDataResponse")] 1288 1279 byte[] GetProblemData(long problemId); 1289 1290 [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IRunCreationService/GetProblemData", ReplyAction="http://tempuri.org/IRunCreationService/GetProblemDataResponse")]1291 System.Threading.Tasks.Task<byte[]> GetProblemDataAsync(long problemId);1292 1280 1293 1281 [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IRunCreationService/GetSolutions", ReplyAction="http://tempuri.org/IRunCreationService/GetSolutionsResponse")] … … 1295 1283 System.Collections.Generic.List<HeuristicLab.Clients.OKB.RunCreation.Solution> GetSolutions(long problemId); 1296 1284 1297 [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IRunCreationService/GetSolutions", ReplyAction="http://tempuri.org/IRunCreationService/GetSolutionsResponse")]1298 System.Threading.Tasks.Task<System.Collections.Generic.List<HeuristicLab.Clients.OKB.RunCreation.Solution>> GetSolutionsAsync(long problemId);1299 1300 1285 [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IRunCreationService/GetSolution", ReplyAction="http://tempuri.org/IRunCreationService/GetSolutionResponse")] 1301 1286 HeuristicLab.Clients.OKB.RunCreation.Solution GetSolution(long solutionId); 1302 1303 [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IRunCreationService/GetSolution", ReplyAction="http://tempuri.org/IRunCreationService/GetSolutionResponse")]1304 System.Threading.Tasks.Task<HeuristicLab.Clients.OKB.RunCreation.Solution> GetSolutionAsync(long solutionId);1305 1287 1306 1288 [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IRunCreationService/GetSolutionData", ReplyAction="http://tempuri.org/IRunCreationService/GetSolutionDataResponse")] … … 1308 1290 byte[] GetSolutionData(long solutionId); 1309 1291 1310 [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IRunCreationService/GetSolutionData", ReplyAction="http://tempuri.org/IRunCreationService/GetSolutionDataResponse")]1311 System.Threading.Tasks.Task<byte[]> GetSolutionDataAsync(long solutionId);1312 1313 1292 [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IRunCreationService/AddSolution", ReplyAction="http://tempuri.org/IRunCreationService/AddSolutionResponse")] 1314 1293 long AddSolution(HeuristicLab.Clients.OKB.RunCreation.Solution solution, byte[] data); 1315 1294 1316 [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IRunCreationService/AddSolution", ReplyAction="http://tempuri.org/IRunCreationService/AddSolutionResponse")]1317 System.Threading.Tasks.Task<long> AddSolutionAsync(HeuristicLab.Clients.OKB.RunCreation.Solution solution, byte[] data);1318 1319 1295 [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IRunCreationService/DeleteSolution", ReplyAction="http://tempuri.org/IRunCreationService/DeleteSolutionResponse")] 1320 1296 void DeleteSolution(HeuristicLab.Clients.OKB.RunCreation.Solution solution); 1321 1297 1322 [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IRunCreationService/DeleteSolution", ReplyAction="http://tempuri.org/IRunCreationService/DeleteSolutionResponse")]1323 System.Threading.Tasks.Task DeleteSolutionAsync(HeuristicLab.Clients.OKB.RunCreation.Solution solution);1324 1325 1298 [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IRunCreationService/AddRun", ReplyAction="http://tempuri.org/IRunCreationService/AddRunResponse")] 1326 1299 void AddRun(HeuristicLab.Clients.OKB.RunCreation.Run run); 1327 1300 1328 [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IRunCreationService/AddRun", ReplyAction="http://tempuri.org/IRunCreationService/AddRunResponse")]1329 System.Threading.Tasks.Task AddRunAsync(HeuristicLab.Clients.OKB.RunCreation.Run run);1330 1331 1301 [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IRunCreationService/GetCharacteristicValues", ReplyAction="http://tempuri.org/IRunCreationService/GetCharacteristicValuesResponse")] 1332 1302 System.Collections.Generic.List<HeuristicLab.Clients.OKB.RunCreation.Value> GetCharacteristicValues(long problemId); 1333 1334 [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IRunCreationService/GetCharacteristicValues", ReplyAction="http://tempuri.org/IRunCreationService/GetCharacteristicValuesResponse")]1335 System.Threading.Tasks.Task<System.Collections.Generic.List<HeuristicLab.Clients.OKB.RunCreation.Value>> GetCharacteristicValuesAsync(long problemId);1336 1303 1337 1304 [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IRunCreationService/SetCharacteristicValue", ReplyAction="http://tempuri.org/IRunCreationService/SetCharacteristicValueResponse")] … … 1340 1307 "cTypeFault", Name="UnknownCharacteristicType", Namespace="http://schemas.datacontract.org/2004/07/HeuristicLab.Services.OKB.RunCreation")] 1341 1308 void SetCharacteristicValue(long problemId, HeuristicLab.Clients.OKB.RunCreation.Value value); 1342 1343 [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IRunCreationService/SetCharacteristicValue", ReplyAction="http://tempuri.org/IRunCreationService/SetCharacteristicValueResponse")]1344 System.Threading.Tasks.Task SetCharacteristicValueAsync(long problemId, HeuristicLab.Clients.OKB.RunCreation.Value value);1345 1309 1346 1310 [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IRunCreationService/SetCharacteristicValues", ReplyAction="http://tempuri.org/IRunCreationService/SetCharacteristicValuesResponse")] … … 1350 1314 "", Name="MissingProblem", Namespace="http://schemas.datacontract.org/2004/07/HeuristicLab.Services.OKB.RunCreation")] 1351 1315 void SetCharacteristicValues(long problemId, System.Collections.Generic.List<HeuristicLab.Clients.OKB.RunCreation.Value> values); 1352 1353 [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IRunCreationService/SetCharacteristicValues", ReplyAction="http://tempuri.org/IRunCreationService/SetCharacteristicValuesResponse")]1354 System.Threading.Tasks.Task SetCharacteristicValuesAsync(long problemId, System.Collections.Generic.List<HeuristicLab.Clients.OKB.RunCreation.Value> values);1355 1316 } 1356 1317 … … 1394 1355 } 1395 1356 1396 public System.Threading.Tasks.Task<System.Collections.Generic.List<HeuristicLab.Clients.OKB.RunCreation.Algorithm>> GetAlgorithmsAsync(string platformName)1397 {1398 return base.Channel.GetAlgorithmsAsync(platformName);1399 }1400 1401 1357 public byte[] GetAlgorithmData(long algorithmId) 1402 1358 { … … 1404 1360 } 1405 1361 1406 public System.Threading.Tasks.Task<byte[]> GetAlgorithmDataAsync(long algorithmId)1407 {1408 return base.Channel.GetAlgorithmDataAsync(algorithmId);1409 }1410 1411 1362 public System.Collections.Generic.List<HeuristicLab.Clients.OKB.RunCreation.Problem> GetProblems(string platformName) 1412 1363 { … … 1414 1365 } 1415 1366 1416 public System.Threading.Tasks.Task<System.Collections.Generic.List<HeuristicLab.Clients.OKB.RunCreation.Problem>> GetProblemsAsync(string platformName)1417 {1418 return base.Channel.GetProblemsAsync(platformName);1419 }1420 1421 1367 public byte[] GetProblemData(long problemId) 1422 1368 { … … 1424 1370 } 1425 1371 1426 public System.Threading.Tasks.Task<byte[]> GetProblemDataAsync(long problemId)1427 {1428 return base.Channel.GetProblemDataAsync(problemId);1429 }1430 1431 1372 public System.Collections.Generic.List<HeuristicLab.Clients.OKB.RunCreation.Solution> GetSolutions(long problemId) 1432 1373 { … … 1434 1375 } 1435 1376 1436 public System.Threading.Tasks.Task<System.Collections.Generic.List<HeuristicLab.Clients.OKB.RunCreation.Solution>> GetSolutionsAsync(long problemId)1437 {1438 return base.Channel.GetSolutionsAsync(problemId);1439 }1440 1441 1377 public HeuristicLab.Clients.OKB.RunCreation.Solution GetSolution(long solutionId) 1442 1378 { … … 1444 1380 } 1445 1381 1446 public System.Threading.Tasks.Task<HeuristicLab.Clients.OKB.RunCreation.Solution> GetSolutionAsync(long solutionId)1447 {1448 return base.Channel.GetSolutionAsync(solutionId);1449 }1450 1451 1382 public byte[] GetSolutionData(long solutionId) 1452 1383 { … … 1454 1385 } 1455 1386 1456 public System.Threading.Tasks.Task<byte[]> GetSolutionDataAsync(long solutionId)1457 {1458 return base.Channel.GetSolutionDataAsync(solutionId);1459 }1460 1461 1387 public long AddSolution(HeuristicLab.Clients.OKB.RunCreation.Solution solution, byte[] data) 1462 1388 { … … 1464 1390 } 1465 1391 1466 public System.Threading.Tasks.Task<long> AddSolutionAsync(HeuristicLab.Clients.OKB.RunCreation.Solution solution, byte[] data)1467 {1468 return base.Channel.AddSolutionAsync(solution, data);1469 }1470 1471 1392 public void DeleteSolution(HeuristicLab.Clients.OKB.RunCreation.Solution solution) 1472 1393 { … … 1474 1395 } 1475 1396 1476 public System.Threading.Tasks.Task DeleteSolutionAsync(HeuristicLab.Clients.OKB.RunCreation.Solution solution)1477 {1478 return base.Channel.DeleteSolutionAsync(solution);1479 }1480 1481 1397 public void AddRun(HeuristicLab.Clients.OKB.RunCreation.Run run) 1482 1398 { … … 1484 1400 } 1485 1401 1486 public System.Threading.Tasks.Task AddRunAsync(HeuristicLab.Clients.OKB.RunCreation.Run run)1487 {1488 return base.Channel.AddRunAsync(run);1489 }1490 1491 1402 public System.Collections.Generic.List<HeuristicLab.Clients.OKB.RunCreation.Value> GetCharacteristicValues(long problemId) 1492 1403 { … … 1494 1405 } 1495 1406 1496 public System.Threading.Tasks.Task<System.Collections.Generic.List<HeuristicLab.Clients.OKB.RunCreation.Value>> GetCharacteristicValuesAsync(long problemId)1497 {1498 return base.Channel.GetCharacteristicValuesAsync(problemId);1499 }1500 1501 1407 public void SetCharacteristicValue(long problemId, HeuristicLab.Clients.OKB.RunCreation.Value value) 1502 1408 { … … 1504 1410 } 1505 1411 1506 public System.Threading.Tasks.Task SetCharacteristicValueAsync(long problemId, HeuristicLab.Clients.OKB.RunCreation.Value value)1507 {1508 return base.Channel.SetCharacteristicValueAsync(problemId, value);1509 }1510 1511 1412 public void SetCharacteristicValues(long problemId, System.Collections.Generic.List<HeuristicLab.Clients.OKB.RunCreation.Value> values) 1512 1413 { 1513 1414 base.Channel.SetCharacteristicValues(problemId, values); 1514 1415 } 1515 1516 public System.Threading.Tasks.Task SetCharacteristicValuesAsync(long problemId, System.Collections.Generic.List<HeuristicLab.Clients.OKB.RunCreation.Value> values)1517 {1518 return base.Channel.SetCharacteristicValuesAsync(problemId, values);1519 }1520 1416 } 1521 1417 }
Note: See TracChangeset
for help on using the changeset viewer.