Example usage for Java com.mongodb.client MongoCursor fields, constructors, methods, implement or subclass
The text is from its open source code.
void | close() |
ServerCursor | getServerCursor() Returns the server cursor, which can be null if the no cursor was created or if the cursor has been exhausted or killed. |
boolean | hasNext() |
TResult | next() |
TResult | tryNext() A special next() case that returns the next element in the iteration if available or null. |