Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
BatchIteratorInterface.php
Go to the documentation of this file.
1 <?php
7 
11 interface BatchIteratorInterface extends \Iterator
12 {
17  const UNIQUE_FIELD_ITERATOR = "unique";
18 
23  const NON_UNIQUE_FIELD_ITERATOR = "non_unqiue";
24 
32  public function current();
33 
41  public function key();
42 
51  public function next();
52 
60  public function rewind();
61 
67  public function valid();
68 }