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

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

Introduction

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

Prototype

FindIterable<T> maxTime(long maxTime, TimeUnit timeUnit);

Source Link

Document

Sets the maximum execution time on the server for this operation.

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);
    }/*  w  ww  .  j a v  a2s.  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;
}