Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/23/08 18:40:38 (16 years ago)
Author:
gkronber
Message:

worked on executer which retrieves the next job from the dispatcher and sends it to the grid for execution. #419 (Refactor CEDMA plugins)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/CEDMA-Refactoring-Ticket419/HeuristicLab.CEDMA.Server/ServerForm.cs

    r1044 r1060  
    4545    private Store store;
    4646    private Dispatcher dispatcher;
     47    private Executer executer;
    4748
    4849    private static readonly string rdfFile = AppDomain.CurrentDomain.BaseDirectory + "rdf_store.db3";
     
    6465
    6566    private void connectButton_Click(object sender, EventArgs e) {
    66       // new GridExecutor(dispatcher)
     67      executer = new Executer(dispatcher, store, gridAddress.Text);
     68      executer.Start();
     69      connectButton.Enabled = false;
    6770    }
    6871  }
Note: See TracChangeset for help on using the changeset viewer.