/driver-async/src/main/com/mongodb/async/client/DistinctIterable.java

http://github.com/mongodb/mongo-java-driver · Java · 59 lines · 8 code · 9 blank · 42 comment · 0 complexity · 5474e47faeecd5ddd72cc3f052a4d2a2 MD5 · raw file

  1. /*
  2. * Copyright 2015 MongoDB, Inc.
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. package com.mongodb.async.client;
  17. import org.bson.conversions.Bson;
  18. import java.util.concurrent.TimeUnit;
  19. /**
  20. * Iterable for distinct.
  21. *
  22. * @param <TResult> The type of the result.
  23. * @since 3.0
  24. */
  25. public interface DistinctIterable<TResult> extends MongoIterable<TResult> {
  26. /**
  27. * Sets the query filter to apply to the query.
  28. *
  29. * @param filter the filter, which may be null.
  30. * @return this
  31. * @mongodb.driver.manual reference/method/db.collection.find/ Filter
  32. */
  33. DistinctIterable<TResult> filter(Bson filter);
  34. /**
  35. * Sets the maximum execution time on the server for this operation.
  36. *
  37. * @param maxTime the max time
  38. * @param timeUnit the time unit, which may not be null
  39. * @return this
  40. */
  41. DistinctIterable<TResult> maxTime(long maxTime, TimeUnit timeUnit);
  42. /**
  43. * Sets the number of documents to return per batch.
  44. *
  45. * @param batchSize the batch size
  46. * @return this
  47. * @mongodb.driver.manual reference/method/cursor.batchSize/#cursor.batchSize Batch Size
  48. */
  49. DistinctIterable<TResult> batchSize(int batchSize);
  50. }