GoLang MongoCursorInterface::timeout

request it (305)
GoLang replacement for PHP's MongoCursorInterface::timeout [edit | history]



Do you know a GoLang replacement for PHP's MongoCursorInterface::timeout? Write it!

PHP MongoCursorInterface::timeout

PHP original manual for MongoCursorInterface::timeout [ show | php.net ]

MongoCursorInterface::timeout

(PECL mongo >=1.5.0)

MongoCursorInterface::timeoutSets a client-side timeout for this query

Description

abstract public MongoCursorInterface MongoCursorInterface::timeout ( int $ms )

A timeout can be set at any time and will affect subsequent data retrieval associated with this cursor, including fetching more results from the database.

Parameters

ms

The number of milliseconds for the cursor to wait for a response. Use -1 to wait forever. By default, the cursor will wait 30000 milliseconds (30 seconds).

Return Values

Returns this cursor.

Errors/Exceptions

Causes methods that fetch results to throw a MongoCursorTimeoutException if the data fetch takes longer than the specified number of milliseconds.

See Also