Last change
on this file since 14600 was
14586,
checked in by jkarder, 8 years ago
|
#2205: worked on optimization networks
- added projects for integrated optimization (orchestration)
|
File size:
526 bytes
|
Line | |
---|
1 | using System.Threading.Tasks;
|
---|
2 | using HeuristicLab.Core;
|
---|
3 | using HeuristicLab.Core.Networks;
|
---|
4 | using HeuristicLab.Optimization;
|
---|
5 |
|
---|
6 | namespace HeuristicLab.Networks.IntegratedOptimization {
|
---|
7 | public interface IOrchestratorNode : INode {
|
---|
8 | IKeyedItemCollection<string, IParameter> Parameters { get; }
|
---|
9 | ResultCollection Results { get; }
|
---|
10 |
|
---|
11 | void Prepare();
|
---|
12 | Task PrepareAsync();
|
---|
13 | void Start();
|
---|
14 | Task StartAsync();
|
---|
15 | void Pause();
|
---|
16 | Task PauseAsync();
|
---|
17 | void Stop();
|
---|
18 | Task StopAsync();
|
---|
19 | }
|
---|
20 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.