2014-04-15 15:48:51 +02:00
|
|
|
<?php
|
2015-02-03 16:27:59 +01:00
|
|
|
/* Icinga Web 2 | (c) 2013-2015 Icinga Development Team | http://www.gnu.org/licenses/gpl-2.0.txt */
|
2014-04-15 15:48:51 +02:00
|
|
|
|
|
|
|
namespace Icinga\Data;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Interface for retrieving just a portion of a result set
|
|
|
|
*/
|
|
|
|
interface Limitable
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Set a limit count and offset
|
|
|
|
*
|
|
|
|
* @param int $count Number of rows to return
|
|
|
|
* @param int $offset Start returning after this many rows
|
|
|
|
*
|
|
|
|
* @return self
|
|
|
|
*/
|
|
|
|
public function limit($count = null, $offset = null);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Whether a limit is set
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function hasLimit();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the limit if any
|
|
|
|
*
|
|
|
|
* @return int|null
|
|
|
|
*/
|
|
|
|
public function getLimit();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Whether an offset is set
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function hasOffset();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the offset if any
|
|
|
|
*
|
|
|
|
* @return int|null
|
|
|
|
*/
|
|
|
|
public function getOffset();
|
|
|
|
}
|