Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Hive.Server.Scheduler/DefaultScheduler.cs @ 1284

Last change on this file since 1284 was 1284, checked in by msteinbi, 15 years ago

Added the 2 missing files (#510) Sorry for that!

File size: 606 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using HeuristicLab.Hive.Server.Core.InternalInterfaces;
6
7namespace HeuristicLab.Hive.Server.Scheduler {
8  class DefaultScheduler : IScheduler {
9    #region IScheduler Members
10
11    public bool ExistsJobForClient(HeuristicLab.Hive.Contracts.BusinessObjects.HeartBeatData hbData) {
12      throw new NotImplementedException();
13    }
14
15    public HeuristicLab.Hive.Contracts.BusinessObjects.Job GetNextJobForClient(Guid clientId) {
16      throw new NotImplementedException();
17    }
18
19    #endregion
20  }
21}
Note: See TracBrowser for help on using the repository browser.