(svn r25355) -Add: demand handler for link graph

This commit is contained in:
fonsinchen
2013-06-09 12:59:51 +00:00
parent c32eea02dd
commit 6a46b5262f
9 changed files with 370 additions and 1 deletions

View File

@@ -12,6 +12,7 @@
#include "../stdafx.h"
#include "linkgraphschedule.h"
#include "init.h"
#include "demands.h"
/**
* Spawn a thread if possible and run the link graph job in the thread. If
@@ -128,6 +129,7 @@ void LinkGraphSchedule::SpawnAll()
LinkGraphSchedule::LinkGraphSchedule()
{
this->handlers[0] = new InitHandler;
this->handlers[1] = new DemandHandler;
}
/**