You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: algoliasearch/Utils/SearchClientExtensions.cs
+21-16Lines changed: 21 additions & 16 deletions
Original file line number
Diff line number
Diff line change
@@ -166,35 +166,38 @@ public partial interface ISearchClient
166
166
/// </summary>
167
167
/// <param name="indexName">The index in which to perform the request.</param>
168
168
/// <param name="objects">The list of `objects` to store in the given Algolia `indexName`.</param>
169
+
/// <param name="waitForTasks">Whether or not we should wait until every `batch` tasks has been processed, this operation may slow the total execution time of this method but is more reliable..</param>
169
170
/// <param name="options">Add extra http header or query parameters to Algolia.</param>
170
171
/// <param name="cancellationToken">Cancellation Token to cancel the request.</param>
/// Helper: Deletes every records for the given objectIDs. The `chunkedBatch` helper is used under the hood, which creates a `batch` requests with at most 1000 objectIDs in it.
178
179
/// </summary>
179
180
/// <param name="indexName">The index in which to perform the request.</param>
180
181
/// <param name="objectIDs">The list of `objectIDs` to remove from the given Algolia `indexName`.</param>
182
+
/// <param name="waitForTasks">Whether or not we should wait until every `batch` tasks has been processed, this operation may slow the total execution time of this method but is more reliable..</param>
181
183
/// <param name="options">Add extra http header or query parameters to Algolia.</param>
182
184
/// <param name="cancellationToken">Cancellation Token to cancel the request.</param>
/// Helper: Replaces object content of all the given objects according to their respective `objectID` field. The `chunkedBatch` helper is used under the hood, which creates a `batch` requests with at most 1000 objects in it.
189
191
/// </summary>
190
192
/// <param name="indexName">The index in which to perform the request.</param>
191
193
/// <param name="objects">The list of `objects` to update in the given Algolia `indexName`.</param>
192
194
/// <param name="createIfNotExists">To be provided if non-existing objects are passed, otherwise, the call will fail.</param>
195
+
/// <param name="waitForTasks">Whether or not we should wait until every `batch` tasks has been processed, this operation may slow the total execution time of this method but is more reliable..</param>
193
196
/// <param name="options">Add extra http header or query parameters to Algolia.</param>
194
197
/// <param name="cancellationToken">Cancellation Token to cancel the request.</param>
0 commit comments