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
* @param indexName The `indexName` to update `objects` in.
736
736
* @param objects The array of `objects` to update in the given Algolia `indexName`.
737
737
* @param createIfNotExists To be provided if non-existing objects are passed, otherwise, the call will fail.
738
+
* @param 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.
739
+
*/
740
+
public <T> List<BatchResponse> partialUpdateObjects(
* 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.
751
+
*
752
+
* @param indexName The `indexName` to update `objects` in.
753
+
* @param objects The array of `objects` to update in the given Algolia `indexName`.
754
+
* @param createIfNotExists To be provided if non-existing objects are passed, otherwise, the call will fail.
755
+
* @param 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.
738
756
* @param requestOptions The requestOptions to send along with the query, they will be merged with the transporter requestOptions. (optional)
739
757
*/
740
758
public <T> List<BatchResponse> partialUpdateObjects(
0 commit comments