Method | Description | |
---|---|---|
count ( ) : integer | Returns the number of rows. | |
current ( ) : array | Returns current row. | |
first ( ) : array | null | Get the first row. | |
isLastPage ( ) : boolean | Check for the last page when paging. | |
key ( ) : integer | Returns current index. | |
next ( ) : void | Advances the rows iterator by one. | |
nextPage ( float | null $timeout = null ) : |
Get the next page of results. | |
nextPageAsync ( ) : cassandra\Future | Get the next page of results asynchronously. | |
offsetExists ( integer $offset ) : boolean | Returns existence of a given row. | |
offsetGet ( integer $offset ) : array | null | Returns a row at given index. | |
offsetSet ( integer $offset, array $value ) : void | Sets a row at given index. | |
offsetUnset ( integer $offset ) : void | Removes a row at given index. | |
pagingStateToken ( ) : string | Returns the raw paging state token. | |
rewind ( ) : void | Resets the rows iterator. | |
valid ( ) : boolean | Returns existence of more rows being available. |
public isLastPage ( ) : boolean | ||
return | boolean | whether this is the last page or not |
public nextPageAsync ( ) : cassandra\Future | ||
return | cassandra\Future | returns future of the next result page |
public offsetExists ( integer $offset ) : boolean | ||
$offset | integer | row index |
return | boolean | whether a row at a given index exists |
public offsetUnset ( integer $offset ) : void | ||
$offset | integer | row index |
return | void |
public pagingStateToken ( ) : string | ||
return | string |