function sendWaitingPackage ();
/**
- * Clears all stacks
+ * Clears all stacker
*
* @return void
*/
- function clearAllStacks ();
+ function clearAllStacker ();
}
// [EOF]
$isSamePeerState = ($rowData[self::DB_COLUMN_PEER_STATE] == $helperInstance->getPrintableState());
// Debug message
- /* NOISY-DEBUG: */ $this->debugOutput('DATABASE-WRAPPER: previous state=' . $rowData[self::DB_COLUMN_PEER_STATE] . ', current state=' . $helperInstance->getPrintableState() . ',isSamePeerState=' . intval($isSamePeerState));
+ /* NOISY-DEBUG: */ $this->debugOutput('DATABASE-WRAPPER: state in database: ' . $rowData[self::DB_COLUMN_PEER_STATE] . ', new state: ' . $helperInstance->getPrintableState() . ',isSamePeerState=' . intval($isSamePeerState));
// Return it
return $isSamePeerState;
}
/**
- * Clears all stacks
+ * Clears all stacker
*
* @return void
*/
- public function clearAllStacks () {
+ public function clearAllStacker () {
// Do the cleanup (no flushing)
foreach (
array(
} // END - foreach
// Debug message
- /* DEBUG: */ $this->debugOutput('PACKAGE: All stackers has be re-initialized.');
+ /* DEBUG: */ $this->debugOutput('PACKAGE: All stacker have been re-initialized.');
}
}
*/
public function visitNetworkPackage (Deliverable $packageInstance) {
// Just call it back
- $packageInstance->clearAllStacks();
+ $packageInstance->clearAllStacker();
}
}