/**
  * Counts the number of items which need to be processed
  *
  * @author Timo Schmidt <*****@*****.**>
  * @param void
  * @return int
  */
 public function countItemsProcessed()
 {
     $queueRepository = new tx_crawler_domain_queue_repository();
     return $queueRepository->countExtecutedItemsByProcess($this);
 }