Property | Type | Description | |
---|---|---|---|
$backend | Neos\Cache\Backend\IterableBackendInterface | ||
$frontend | Neos\Cache\Frontend\FrontendInterface |
Method | Description | |
---|---|---|
__construct ( Neos\Cache\Frontend\FrontendInterface $frontend, Neos\Cache\Backend\IterableBackendInterface $backend, integer $chunkSize = null ) | Constructs this Iterator | |
current ( ) : mixed | Returns the data of the current cache entry pointed to by the cache entry iterator. | |
key ( ) : string | Returns the identifier of the current cache entry pointed to by the cache entry iterator. | |
next ( ) : void | Move forward to the next cache entry | |
rewind ( ) : void | Rewind the cache entry iterator to the first element | |
valid ( ) : boolean | Checks if current position of the cache entry iterator is valid |
public __construct ( Neos\Cache\Frontend\FrontendInterface $frontend, Neos\Cache\Backend\IterableBackendInterface $backend, integer $chunkSize = null ) | ||
$frontend | Neos\Cache\Frontend\FrontendInterface | Frontend of the cache to iterate over |
$backend | Neos\Cache\Backend\IterableBackendInterface | Backend of the cache |
$chunkSize | integer | Determines the number of entries fetched by the backend at once (for future use) |
protected IterableBackendInterface,Neos\Cache\Backend $backend | ||
return | Neos\Cache\Backend\IterableBackendInterface |