Inheritance: extends Jackalope\Transport\TransportInterface
 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));
 }
 /**
  * {@inheritDoc}
  *
  * @api
  */
 public function setUserData($userData)
 {
     $this->transport->setUserData($userData);
 }
Example #3
0
 protected function fetchJournal()
 {
     $this->events = $this->transport->getEvents($this->currentMillis, $this->filter, $this->session);
 }
Example #4
0
 /**
  * {@inheritDoc}
  * @api
  */
 public function getEventJournal($eventTypes = null, $absPath = null, $isDeep = null, array $uuid = null, array $nodeTypeName = null)
 {
     return $this->transport->getEventJournal($this->session, $eventTypes, $absPath, $isDeep, $uuid, $nodeTypeName);
 }