Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
11/24/08 13:38:55 (16 years ago)
Author:
kgrading
Message:

implemented the async calls to GetSnapshot and GetFinishedJob (#383)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Hive.Server.Core/ClientCommunicator.cs

    r805 r811  
    1414    List<ClientInfo> clients;
    1515    LinkedList<long> jobs;
    16     int nrOfJobs = 10;
     16    int nrOfJobs = 3;
    1717
    1818    public ClientCommunicator() {
    1919      jobs = new LinkedList<long>();
    20       for (long i = 1; i < nrOfJobs; i++) {
     20      for (long i = 0; i < nrOfJobs; i++) {
    2121        jobs.AddFirst(i);
    2222      }
Note: See TracChangeset for help on using the changeset viewer.