Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/31/08 17:42:20 (16 years ago)
Author:
gkronber
Message:

worked on #211 (Full operator-graphs are stored multiple times in the database even though most of it is static anyway)

By introducing a table of operators in the CEDMA database.

Location:
trunk/sources/HeuristicLab.CEDMA.DB.Interfaces
Files:
1 added
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.CEDMA.DB.Interfaces/HeuristicLab.CEDMA.DB.Interfaces.csproj

    r390 r416  
    5555  <ItemGroup>
    5656    <Compile Include="AgentEntry.cs" />
     57    <Compile Include="OperatorEntry.cs" />
    5758    <Compile Include="ProcessStatus.cs" />
    5859    <Compile Include="ResultEntry.cs" />
  • trunk/sources/HeuristicLab.CEDMA.DB.Interfaces/IDatabase.cs

    r398 r416  
    4848    long InsertSubResult(long resultId, string summary, string description, byte[] rawData);
    4949
     50    [OperationContract]
     51    long InsertOperator(string name, string rawData);
     52
    5053    // should be replaced by more powerful querying interface (LINQ provider?)
    5154    [OperationContract]
     
    6164    ICollection<ResultEntry> GetSubResults(long parentResultId);
    6265
     66    [OperationContract]
     67    ICollection<OperatorEntry> GetOperators();
     68
    6369  }
    6470}
Note: See TracChangeset for help on using the changeset viewer.