mirror of
https://github.com/macintoshplus/mongo-php-driver.git
synced 2026-04-02 14:22:19 +02:00
17 lines
248 B
PHP
17 lines
248 B
PHP
<?php
|
|
|
|
namespace MongoDB;
|
|
|
|
interface Cursor extends ServerResult, \Iterator
|
|
{
|
|
/**
|
|
* @return integer Cursor identifier
|
|
*/
|
|
function getId();
|
|
|
|
/**
|
|
* @param integer $batchSize
|
|
*/
|
|
function setBatchSize($batchSize);
|
|
}
|