Package org.springframework.data.mongodb.core.MongoTemplate

Examples of org.springframework.data.mongodb.core.MongoTemplate.QueryCursorPreparer


    verify(cursorToUse).addSpecial(eq("$snapshot"), eq(true));
  }

  private DBCursor pepare(Query query) {

    CursorPreparer preparer = new MongoTemplate(factory).new QueryCursorPreparer(query, null);
    return preparer.prepare(cursor);
  }
View Full Code Here

TOP

Related Classes of org.springframework.data.mongodb.core.MongoTemplate.QueryCursorPreparer

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.