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

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

Introduction

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

Prototype

FindIterable<T> batchSize(int batchSize);

Source Link

Document

Sets the number of documents to return per batch.

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  .  j  ava 2s .  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;
}