Free cookie consent management tool by TermsFeed Policy Generator

source: branches/OptimizationNetworks/HeuristicLab.Networks.IntegratedOptimization/3.3/IOrchestratorNode.cs @ 14586

Last change on this file since 14586 was 14586, checked in by jkarder, 7 years ago

#2205: worked on optimization networks

  • added projects for integrated optimization (orchestration)
File size: 526 bytes
Line 
1using System.Threading.Tasks;
2using HeuristicLab.Core;
3using HeuristicLab.Core.Networks;
4using HeuristicLab.Optimization;
5
6namespace 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.