Skip to content

Commit 92532ab

Browse files
committed
chore: Added one overload for updateVectors null timeout
Signed-off-by: Anush008 <[email protected]>
1 parent bbc813e commit 92532ab

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

src/main/java/io/qdrant/client/QdrantClient.java

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1212,6 +1212,16 @@ public ListenableFuture<UpdateResult> updateVectorsAsync(
12121212
return updateVectorsAsync(requestBuilder.build(), timeout);
12131213
}
12141214

1215+
/**
1216+
* Update named vectors for point.
1217+
*
1218+
* @param request The update point vectors request
1219+
* @return a new instance of {@link ListenableFuture}
1220+
*/
1221+
public ListenableFuture<UpdateResult> updateVectorsAsync(UpdatePointVectors request) {
1222+
return updateVectorsAsync(request, null);
1223+
}
1224+
12151225
/**
12161226
* Update named vectors for point.
12171227
*

0 commit comments

Comments
 (0)