Example usage for com.mongodb.async.client FindIterable cursorType

List of usage examples for com.mongodb.async.client FindIterable cursorType

Introduction

In this page you can find the example usage for com.mongodb.async.client FindIterable cursorType.

Prototype

FindIterable<T> cursorType(CursorType cursorType);

Source Link

Document

Sets the cursor type.

Usage

From source file:com.mastfrog.asyncpromises.mongo.FindBuilderImpl.java

License:Open Source License

FindIterable<T> apply(FindIterable<T> iter) {
    if (batchSize > 0) {
        iter = iter.batchSize(batchSize);
    }//from w w  w  .ja  v  a 2  s .c  o  m
    if (limit > 0) {
        iter = iter.limit(limit);
    }
    if (projection != null) {
        iter = iter.projection(projection);
    }
    if (cursorType != null) {
        iter = iter.cursorType(cursorType);
    }
    if (filter != null) {
        iter = iter.filter(filter);
    }
    if (modifiers != null) {
        iter = iter.modifiers(modifiers);
    }
    if (unit != null) {
        iter = iter.maxTime(maxTime, unit);
    }
    if (sort != null) {
        iter = iter.sort(sort);
    }
    return iter;
}