|
MongoDB
2.5.0
|
Queries return a cursor object. More...
#include <dbclientcursor.h>
Classes | |
| class | Batch |
Public Member Functions | |
| bool | more () |
| If true, safe to call next(). More... | |
| int | objsLeftInBatch () const |
| If true, there is more in our local buffers to be fetched via next(). More... | |
| bool | moreInCurrentBatch () |
| BSONObj | next () |
| next More... | |
| void | putBack (const BSONObj &o) |
| restore an object previously returned by next() to the cursor | |
| BSONObj | nextSafe () |
| throws AssertionException if get back { $err : ... More... | |
| void | peek (vector< BSONObj > &, int atMost) |
| peek ahead at items buffered for future next() calls. More... | |
| BSONObj | peekFirst () |
| bool | peekError (BSONObj *error=NULL) |
| peek ahead and see if an error occurred, and get the error if so. | |
| int | itcount () |
| iterate the rest of the cursor and return the number if items | |
| bool | isDead () const |
| cursor no longer valid – use with tailable cursors. More... | |
| bool | tailable () const |
| bool | hasResultFlag (int flag) |
| see ResultFlagType (constants.h) for flag values mostly these flags are for internal purposes - ResultFlag_ErrSet is the possible exception to that | |
| DBClientCursor (DBClientBase *client, const string &_ns, BSONObj _query, int _nToReturn, int _nToSkip, const BSONObj *_fieldsToReturn, int queryOptions, int bs) | |
| DBClientCursor (DBClientBase *client, const string &_ns, long long _cursorId, int _nToReturn, int options) | |
| long long | getCursorId () const |
| void | decouple () |
| by default we "own" the cursor and will send the server a KillCursor message when ~DBClientCursor() is called. More... | |
| void | attach (AScopedConnection *conn) |
| string | originalHost () const |
| string | getns () const |
| Message * | getMessage () |
| bool | initCommand () |
| Used mainly to run commands on connections that doesn't support lazy initialization and does not support commands through the call interface. More... | |
| bool | init () |
| actually does the query | |
| void | initLazy (bool isRetry=false) |
| bool | initLazyFinish (bool &retry) |
Friends | |
| class | DBClientBase |
| class | DBClientConnection |
Queries return a cursor object.
|
inline |
by default we "own" the cursor and will send the server a KillCursor message when ~DBClientCursor() is called.
This function overrides that.
| bool mongo::DBClientCursor::initCommand | ( | ) |
Used mainly to run commands on connections that doesn't support lazy initialization and does not support commands through the call interface.
| cmd | The BSON representation of the command to send. |
|
inline |
cursor no longer valid – use with tailable cursors.
note you should only rely on this once more() returns false; 'dead' may be preset yet some data still queued and locally available from the dbclientcursor.
|
virtual |
If true, safe to call next().
Requests more from server if necessary.
Implements mongo::DBClientCursorInterface.
|
virtual |
next
Warning: The returned BSONObj will become invalid after the next batch is fetched or when this cursor is destroyed.
Implements mongo::DBClientCursorInterface.
|
inline |
throws AssertionException if get back { $err : ...
}
|
inline |
If true, there is more in our local buffers to be fetched via next().
Returns false when a getMore request back to server would be required. You can use this if you want to exhaust whatever data has been fetched to the client already but then perhaps stop.
| void mongo::DBClientCursor::peek | ( | vector< BSONObj > & | v, |
| int | atMost | ||
| ) |
peek ahead at items buffered for future next() calls.
never requests new data from the server. so peek only effective with what is already buffered. WARNING: no support for _putBack yet!
1.8.3.1