Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
02/12/09 15:19:34 (16 years ago)
Author:
gkronber
Message:

Improved dispatcher code. Added an interface and a base class to make it easier to try out different dispatch strategies in the future. #419 (Refactor CEDMA plugins)

File:
1 edited

Legend:

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

    r1216 r1217  
    4141namespace HeuristicLab.CEDMA.Server {
    4242  public class Executer {
    43     private Dispatcher dispatcher;
     43    private IDispatcher dispatcher;
    4444    private JobManager jobManager;
    4545    private IStore store;
     
    6363    }
    6464
    65     public Executer(Dispatcher dispatcher, IStore store, string gridUrl) {
     65    public Executer(IDispatcher dispatcher, IStore store, string gridUrl) {
    6666      activeExecutions = new Dictionary<WaitHandle, Execution>();
    6767      maxActiveJobs = 10;
Note: See TracChangeset for help on using the changeset viewer.