Cake\ElasticSearch\Query::offset PHP 메소드

offset() 공개 메소드

Sets the number of records that should be skipped from the original result set This is commonly used for paginating large results. Accepts an integer.
public offset ( integer $num )
$num integer The number of records to be skipped
    public function offset($num)
    {
        $this->_parts['offset'] = (int) $num;
        return $this;
    }