protected function fetchNextPage()
 {
     if ($this->nextMillis >= $this->creationMillis) {
         // abort, we arrived in the present of this buffer
         $this->nextMillis = false;
         return;
     }
     $this->setData($this->transport->fetchEventData($this->nextMillis));
 }