/**
  *
  * @param int $recipientUid
  * @return int
  */
 public function fetchAllNotifications($after)
 {
     return $this->_db->fetchAll("SELECT * FROM notification WHERE tokenId = %d AND isNew = 1 AND id > %d", $this->token, $after);
 }