mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-26 05:48:57 +00:00

See https://github.com/phpdocbrbridge/bridge/blob/master/src/revbumper.php for automatic tool for translations. git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@342988 c90b9560-bf6c-de11-be94-00142212c4b1
91 lines
2.4 KiB
XML
91 lines
2.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- $Revision$ -->
|
|
|
|
<refentry xml:id="function.log-getmore" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
<refnamediv>
|
|
<refname>log_getmore</refname>
|
|
<refpurpose>Callback When Retrieving Next Cursor Batch</refpurpose>
|
|
</refnamediv>
|
|
|
|
<refsect1 role="description"><!-- {{{ -->
|
|
&reftitle.description;
|
|
<methodsynopsis role="procedural">
|
|
<methodname>log_getmore</methodname>
|
|
<methodparam><type>array</type><parameter>server</parameter></methodparam>
|
|
<methodparam><type>array</type><parameter>info</parameter></methodparam>
|
|
</methodsynopsis>
|
|
<para>
|
|
A <type>callable</type> function, used by the
|
|
<link linkend="context.mongodb.log-getmore">log_getmore context option</link>,
|
|
when executing a GET_MORE operation.
|
|
</para>
|
|
<note>
|
|
<para>
|
|
This is <emphasis>not</emphasis> a real function, only a prototype of how the function should
|
|
be.
|
|
</para>
|
|
</note>
|
|
</refsect1><!-- }}} -->
|
|
|
|
<refsect1 role="parameters"><!-- {{{ -->
|
|
&reftitle.parameters;
|
|
<variablelist>
|
|
&mongo.context.server;
|
|
<varlistentry>
|
|
<term>
|
|
<parameter>info</parameter>
|
|
</term>
|
|
<listitem>
|
|
<para>
|
|
<informaltable>
|
|
<tgroup cols="2">
|
|
<thead>
|
|
<row>
|
|
<entry>key</entry>
|
|
<entry>value</entry>
|
|
</row>
|
|
</thead>
|
|
<tbody>
|
|
<row>
|
|
<entry>request_id</entry>
|
|
<entry>integer, the driver request identifier</entry>
|
|
</row>
|
|
<row>
|
|
<entry>cursor_id</entry>
|
|
<entry>integer, the cursor identifier being used to fetch more data</entry>
|
|
</row>
|
|
<row>
|
|
<entry>batch_size</entry>
|
|
<entry>integer, maximum number of documents being requested</entry>
|
|
</row>
|
|
</tbody>
|
|
</tgroup>
|
|
</informaltable>
|
|
</para>
|
|
</listitem>
|
|
</varlistentry>
|
|
</variablelist>
|
|
</refsect1><!-- }}} -->
|
|
|
|
</refentry>
|
|
|
|
<!-- Keep this comment at the end of the file
|
|
Local variables:
|
|
mode: sgml
|
|
sgml-omittag:t
|
|
sgml-shorttag:t
|
|
sgml-minimize-attributes:nil
|
|
sgml-always-quote-attributes:t
|
|
sgml-indent-step:1
|
|
sgml-indent-data:t
|
|
indent-tabs-mode:nil
|
|
sgml-parent-document:nil
|
|
sgml-default-dtd-file:"~/.phpdoc/manual.ced"
|
|
sgml-exposed-tags:nil
|
|
sgml-local-catalogs:nil
|
|
sgml-local-ecat-files:nil
|
|
End:
|
|
vim600: syn=xml fen fdm=syntax fdl=2 si
|
|
vim: et tw=78 syn=sgml
|
|
vi: ts=1 sw=1
|
|
-->
|