Skip to content

Commit d33a6a6

Browse files
committed
update: rename getAll to get
1 parent 0890141 commit d33a6a6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/src/main/java/com/fpf/smartscansdk/core/ml/embeddings/EmbeddingTypes.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ interface IEmbeddingStore {
2222
val exists: Boolean
2323
suspend fun add(newEmbeddings: List<Embedding>)
2424
suspend fun remove(ids: List<Long>)
25-
suspend fun getAll(): List<Embedding> // getAll used instead of get to make clear that loading full index in memory is required
25+
suspend fun get(): List<Embedding>
2626
fun clear()
2727
}
2828

0 commit comments

Comments
 (0)