/**
* Signals the start of a crawl cycle.
* @param oldPageDB the pagedb from which the crawler will read pages during this cycle.
*/
public void declareStartCycle (PageDB oldPageDB) {
CommandWithPageDB cmd = new CommandWithPageDB("startCycle",oldPageDB);
ModulesManager.getInstance().applyCommand(cmd);
}