/**
  * @param UncacherVoodoDaoWorkerLists $uncacher
  * @return UncacherVoodoDaoWorkerLists
  */
 private function mergeSelf(UncacherVoodoDaoWorkerLists $uncacher)
 {
     foreach ($uncacher->getHandlerList() as $className => $handler) {
         if (!isset($this->handlerList[$className])) {
             $this->handlerList[$className] = $handler;
         }
     }
     return $this;
 }
コード例 #2
0
 public function uncacheLists()
 {
     return $this->registerUncacher(UncacherVoodoDaoWorkerLists::create($this->className, $this->handler));
 }