/driver-core/src/main/com/mongodb/connection/AsyncConnection.java

https://github.com/mongodb/mongo-java-driver · Java · 223 lines · 50 code · 17 blank · 156 comment · 0 complexity · 41184f780d96a2111d2df5fab36b0eac 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.connection;
  17. import com.mongodb.MongoNamespace;
  18. import com.mongodb.ReadPreference;
  19. import com.mongodb.WriteConcernResult;
  20. import com.mongodb.annotations.ThreadSafe;
  21. import com.mongodb.async.SingleResultCallback;
  22. import com.mongodb.binding.ReferenceCounted;
  23. import com.mongodb.bulk.DeleteRequest;
  24. import com.mongodb.bulk.InsertRequest;
  25. import com.mongodb.bulk.UpdateRequest;
  26. import com.mongodb.session.SessionContext;
  27. import org.bson.BsonDocument;
  28. import org.bson.FieldNameValidator;
  29. import org.bson.codecs.Decoder;
  30. import java.util.List;
  31. /**
  32. * An asynchronous connection to a MongoDB server with non-blocking operations.
  33. *
  34. * <p> Implementations of this class are thread safe. </p>
  35. *
  36. * <p> This interface is not stable. While methods will not be removed, new ones may be added. </p>
  37. *
  38. * @since 3.0
  39. */
  40. @ThreadSafe
  41. @Deprecated
  42. public interface AsyncConnection extends ReferenceCounted {
  43. @Override
  44. AsyncConnection retain();
  45. /**
  46. * Gets the description of the connection.
  47. *
  48. * @return the connection description
  49. */
  50. ConnectionDescription getDescription();
  51. /**
  52. * Insert the documents using the insert wire protocol and apply the write concern asynchronously.
  53. * @param namespace the namespace
  54. * @param ordered whether the writes are ordered
  55. * @param insertRequest the insert request
  56. * @param callback the callback to be passed the write result
  57. */
  58. void insertAsync(MongoNamespace namespace, boolean ordered, InsertRequest insertRequest,
  59. SingleResultCallback<WriteConcernResult> callback);
  60. /**
  61. * Update the documents using the update wire protocol and apply the write concern asynchronously.
  62. * @param namespace the namespace
  63. * @param ordered whether the writes are ordered
  64. * @param updateRequest the update request
  65. * @param callback the callback to be passed the write result
  66. */
  67. void updateAsync(MongoNamespace namespace, boolean ordered, UpdateRequest updateRequest,
  68. SingleResultCallback<WriteConcernResult> callback);
  69. /**
  70. * Delete the documents using the delete wire protocol and apply the write concern asynchronously.
  71. * @param namespace the namespace
  72. * @param ordered whether the writes are ordered
  73. * @param deleteRequest the delete request
  74. * @param callback the callback to be passed the write result
  75. */
  76. void deleteAsync(MongoNamespace namespace, boolean ordered, DeleteRequest deleteRequest,
  77. SingleResultCallback<WriteConcernResult> callback);
  78. /**
  79. * Execute the command asynchronously.
  80. *
  81. * @param database the database to execute the command in
  82. * @param command the command document
  83. * @param slaveOk whether the command can run on a secondary
  84. * @param fieldNameValidator the field name validator for the command document
  85. * @param commandResultDecoder the decoder for the result
  86. * @param callback the callback to be passed the command result
  87. * @param <T> the type of the result
  88. * @deprecated Prefer {@link #commandAsync(String, BsonDocument, FieldNameValidator, ReadPreference, Decoder, SessionContext,
  89. * SingleResultCallback)}
  90. */
  91. @Deprecated
  92. <T> void commandAsync(String database, BsonDocument command, boolean slaveOk, FieldNameValidator fieldNameValidator,
  93. Decoder<T> commandResultDecoder, SingleResultCallback<T> callback);
  94. /**
  95. * Execute the command.
  96. *
  97. * @param <T> the type of the result
  98. * @param database the database to execute the command in
  99. * @param command the command document
  100. * @param fieldNameValidator the field name validator for the command document
  101. * @param readPreference the read preference that was applied to get this connection, or null if this is a write operation
  102. * @param commandResultDecoder the decoder for the result
  103. * @param sessionContext the session context
  104. * @param callback the callback to be passed the write result
  105. * @since 3.6
  106. */
  107. <T> void commandAsync(String database, BsonDocument command, FieldNameValidator fieldNameValidator, ReadPreference readPreference,
  108. Decoder<T> commandResultDecoder, SessionContext sessionContext, SingleResultCallback<T> callback);
  109. /**
  110. * Executes the command, consuming as much of the {@code SplittablePayload} as possible.
  111. *
  112. * @param <T> the type of the result
  113. * @param database the database to execute the command in
  114. * @param command the command document
  115. * @param commandFieldNameValidator the field name validator for the command document
  116. * @param readPreference the read preference that was applied to get this connection, or null if this is a write operation
  117. * @param commandResultDecoder the decoder for the result
  118. * @param sessionContext the session context
  119. * @param responseExpected true if a response from the server is expected
  120. * @param payload the splittable payload to incorporate with the command
  121. * @param payloadFieldNameValidator the field name validator for the payload documents
  122. * @param callback the callback to be passed the write result
  123. * @since 3.6
  124. */
  125. <T> void commandAsync(String database, BsonDocument command, FieldNameValidator commandFieldNameValidator,
  126. ReadPreference readPreference, Decoder<T> commandResultDecoder, SessionContext sessionContext,
  127. boolean responseExpected, SplittablePayload payload, FieldNameValidator payloadFieldNameValidator,
  128. SingleResultCallback<T> callback);
  129. /**
  130. * Execute the query asynchronously.
  131. *
  132. * @param namespace the namespace to query
  133. * @param queryDocument the query document
  134. * @param fields the field to include or exclude
  135. * @param numberToReturn the number of documents to return
  136. * @param skip the number of documents to skip
  137. * @param slaveOk whether the query can run on a secondary
  138. * @param tailableCursor whether to return a tailable cursor
  139. * @param awaitData whether a tailable cursor should wait before returning if no documents are available
  140. * @param noCursorTimeout whether the cursor should not timeout
  141. * @param partial whether partial results from sharded clusters are acceptable
  142. * @param oplogReplay whether to replay the oplog
  143. * @param resultDecoder the decoder for the query result documents
  144. * @param <T> the query result document type
  145. * @param callback the callback to be passed the write result
  146. * @deprecated Replaced by {@link #queryAsync(MongoNamespace, BsonDocument, BsonDocument, int, int, int, boolean, boolean, boolean,
  147. * boolean, boolean, boolean, Decoder, SingleResultCallback)}
  148. */
  149. @Deprecated
  150. <T> void queryAsync(MongoNamespace namespace, BsonDocument queryDocument, BsonDocument fields,
  151. int numberToReturn, int skip, boolean slaveOk, boolean tailableCursor, boolean awaitData, boolean noCursorTimeout,
  152. boolean partial, boolean oplogReplay, Decoder<T> resultDecoder, SingleResultCallback<QueryResult<T>> callback);
  153. /**
  154. * Execute the query asynchronously.
  155. *
  156. * @param namespace the namespace to query
  157. * @param queryDocument the query document
  158. * @param fields the field to include or exclude
  159. * @param skip the number of documents to skip
  160. * @param limit the maximum number of documents to return in all batches
  161. * @param batchSize the maximum number of documents to return in this batch
  162. * @param slaveOk whether the query can run on a secondary
  163. * @param tailableCursor whether to return a tailable cursor
  164. * @param awaitData whether a tailable cursor should wait before returning if no documents are available
  165. * @param noCursorTimeout whether the cursor should not timeout
  166. * @param partial whether partial results from sharded clusters are acceptable
  167. * @param oplogReplay whether to replay the oplog
  168. * @param resultDecoder the decoder for the query result documents
  169. * @param <T> the query result document type
  170. * @param callback the callback to be passed the write result
  171. * @since 3.1
  172. */
  173. <T> void queryAsync(MongoNamespace namespace, BsonDocument queryDocument, BsonDocument fields,
  174. int skip, int limit, int batchSize, boolean slaveOk, boolean tailableCursor, boolean awaitData,
  175. boolean noCursorTimeout, boolean partial, boolean oplogReplay, Decoder<T> resultDecoder,
  176. SingleResultCallback<QueryResult<T>> callback);
  177. /**
  178. * Get more result documents from a cursor asynchronously.
  179. *
  180. * @param namespace the namespace to get more documents from
  181. * @param cursorId the cursor id
  182. * @param numberToReturn the number of documents to return
  183. * @param resultDecoder the decoder for the query result documents
  184. * @param callback the callback to be passed the query result
  185. * @param <T> the type of the query result documents
  186. */
  187. <T> void getMoreAsync(MongoNamespace namespace, long cursorId, int numberToReturn, Decoder<T> resultDecoder,
  188. SingleResultCallback<QueryResult<T>> callback);
  189. /**
  190. * Asynchronously Kills the given list of cursors.
  191. *
  192. * @param cursors the cursors
  193. * @param callback the callback that is called once the cursors have been killed
  194. * @deprecated Replaced by {@link #killCursorAsync(MongoNamespace, List, SingleResultCallback)}
  195. */
  196. @Deprecated
  197. void killCursorAsync(List<Long> cursors, SingleResultCallback<Void> callback);
  198. /**
  199. * Asynchronously Kills the given list of cursors.
  200. *
  201. * @param namespace the namespace in which the cursors live
  202. * @param cursors the cursors
  203. * @param callback the callback that is called once the cursors have been killed
  204. */
  205. void killCursorAsync(MongoNamespace namespace, List<Long> cursors, SingleResultCallback<Void> callback);
  206. }