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

https://github.com/mongodb/mongo-java-driver · Java · 199 lines · 27 code · 21 blank · 151 comment · 0 complexity · 5c302c6951ccbaf5ee1cc6945c99dbea MD5 · raw file

  1. /*
  2. * Copyright 2008-present 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 com.mongodb.async.SingleResultCallback;
  18. import com.mongodb.client.model.Collation;
  19. import com.mongodb.client.model.MapReduceAction;
  20. import com.mongodb.lang.Nullable;
  21. import org.bson.conversions.Bson;
  22. import java.util.concurrent.TimeUnit;
  23. /**
  24. * Iterable for map reduce.
  25. *
  26. * @param <TResult> The type of the result.
  27. * @since 3.0
  28. * @deprecated Prefer the Reactive Streams-based asynchronous driver (mongodb-driver-reactivestreams artifactId)
  29. */
  30. @Deprecated
  31. public interface MapReduceIterable<TResult> extends MongoIterable<TResult> {
  32. /**
  33. * Sets the collectionName for the output of the MapReduce
  34. *
  35. * <p>The default action is replace the collection if it exists, to change this use {@link #action}.</p>
  36. *
  37. * @param collectionName the name of the collection that you want the map-reduce operation to write its output.
  38. * @return this
  39. */
  40. MapReduceIterable<TResult> collectionName(String collectionName);
  41. /**
  42. * Sets the JavaScript function that follows the reduce method and modifies the output.
  43. *
  44. * @param finalizeFunction the JavaScript function that follows the reduce method and modifies the output.
  45. * @return this
  46. * @mongodb.driver.manual reference/command/mapReduce/#mapreduce-finalize-cmd Requirements for the finalize Function
  47. */
  48. MapReduceIterable<TResult> finalizeFunction(@Nullable String finalizeFunction);
  49. /**
  50. * Sets the global variables that are accessible in the map, reduce and finalize functions.
  51. *
  52. * @param scope the global variables that are accessible in the map, reduce and finalize functions.
  53. * @return this
  54. * @mongodb.driver.manual reference/command/mapReduce mapReduce
  55. */
  56. MapReduceIterable<TResult> scope(@Nullable Bson scope);
  57. /**
  58. * Sets the sort criteria to apply to the query.
  59. *
  60. * @param sort the sort criteria, which may be null.
  61. * @return this
  62. * @mongodb.driver.manual reference/method/cursor.sort/ Sort
  63. */
  64. MapReduceIterable<TResult> sort(@Nullable Bson sort);
  65. /**
  66. * Sets the query filter to apply to the query.
  67. *
  68. * @param filter the filter to apply to the query.
  69. * @return this
  70. * @mongodb.driver.manual reference/method/db.collection.find/ Filter
  71. */
  72. MapReduceIterable<TResult> filter(@Nullable Bson filter);
  73. /**
  74. * Sets the limit to apply.
  75. *
  76. * @param limit the limit
  77. * @return this
  78. * @mongodb.driver.manual reference/method/cursor.limit/#cursor.limit Limit
  79. */
  80. MapReduceIterable<TResult> limit(int limit);
  81. /**
  82. * Sets the flag that specifies whether to convert intermediate data into BSON format between the execution of the map and reduce
  83. * functions. Defaults to false.
  84. *
  85. * @param jsMode the flag that specifies whether to convert intermediate data into BSON format between the execution of the map and
  86. * reduce functions
  87. * @return jsMode
  88. * @mongodb.driver.manual reference/command/mapReduce mapReduce
  89. */
  90. MapReduceIterable<TResult> jsMode(boolean jsMode);
  91. /**
  92. * Sets whether to include the timing information in the result information.
  93. *
  94. * @param verbose whether to include the timing information in the result information.
  95. * @return this
  96. */
  97. MapReduceIterable<TResult> verbose(boolean verbose);
  98. /**
  99. * Sets the maximum execution time on the server for this operation.
  100. *
  101. * @param maxTime the max time
  102. * @param timeUnit the time unit, which may not be null
  103. * @return this
  104. * @mongodb.driver.manual reference/method/cursor.maxTimeMS/#cursor.maxTimeMS Max Time
  105. */
  106. MapReduceIterable<TResult> maxTime(long maxTime, TimeUnit timeUnit);
  107. /**
  108. * Specify the {@code MapReduceAction} to be used when writing to a collection.
  109. *
  110. * @param action an {@link com.mongodb.client.model.MapReduceAction} to perform on the collection
  111. * @return this
  112. */
  113. MapReduceIterable<TResult> action(MapReduceAction action);
  114. /**
  115. * Sets the name of the database to output into.
  116. *
  117. * @param databaseName the name of the database to output into.
  118. * @return this
  119. * @mongodb.driver.manual reference/command/mapReduce/#output-to-a-collection-with-an-action output with an action
  120. */
  121. MapReduceIterable<TResult> databaseName(@Nullable String databaseName);
  122. /**
  123. * Sets if the output database is sharded
  124. *
  125. * @param sharded if the output database is sharded
  126. * @return this
  127. * @mongodb.driver.manual reference/command/mapReduce/#output-to-a-collection-with-an-action output with an action
  128. */
  129. MapReduceIterable<TResult> sharded(boolean sharded);
  130. /**
  131. * Sets if the post-processing step will prevent MongoDB from locking the database.
  132. *
  133. * Valid only with the {@code MapReduceAction.MERGE} or {@code MapReduceAction.REDUCE} actions.
  134. *
  135. * @param nonAtomic if the post-processing step will prevent MongoDB from locking the database.
  136. * @return this
  137. * @mongodb.driver.manual reference/command/mapReduce/#output-to-a-collection-with-an-action output with an action
  138. */
  139. MapReduceIterable<TResult> nonAtomic(boolean nonAtomic);
  140. /**
  141. * Sets the number of documents to return per batch.
  142. *
  143. * @param batchSize the batch size
  144. * @return this
  145. * @mongodb.driver.manual reference/method/cursor.batchSize/#cursor.batchSize Batch Size
  146. */
  147. MapReduceIterable<TResult> batchSize(int batchSize);
  148. /**
  149. * Sets the bypass document level validation flag.
  150. *
  151. * @param bypassDocumentValidation If true, allows the write to opt-out of document level validation.
  152. * @return this
  153. * @since 3.2
  154. * @mongodb.driver.manual reference/command/mapReduce mapReduce
  155. * @mongodb.server.release 3.2
  156. */
  157. MapReduceIterable<TResult> bypassDocumentValidation(@Nullable Boolean bypassDocumentValidation);
  158. /**
  159. * Sets the collation options
  160. *
  161. * <p>A null value represents the server default.</p>
  162. * @param collation the collation options to use
  163. * @return this
  164. * @since 3.4
  165. * @mongodb.server.release 3.4
  166. */
  167. MapReduceIterable<TResult> collation(@Nullable Collation collation);
  168. /**
  169. * Aggregates documents to a collection according to the specified map-reduce function with the given options, which must specify a
  170. * non-inline result.
  171. *
  172. * @param callback the callback, which is called when the aggregation completes
  173. * @throws IllegalStateException if a collection name to write the results to has not been specified
  174. * @see #collectionName(String)
  175. * @mongodb.driver.manual aggregation/ Aggregation
  176. */
  177. void toCollection(SingleResultCallback<Void> callback);
  178. }