Events * with nextEvent as well as a skip method inherited from * RangeIterator. * * @author Markus Nix * @package phpcr * @subpackage observation */ interface EventIterator extends RangeIterator { /** * Returns the next Event in the iteration. * * @return the next Event in the iteration. * @throws NoSuchElementException if iteration has no more Events. */ public function nextEvent(); } ?>