summaryrefslogtreecommitdiffstats
path: root/store/store.go
diff options
context:
space:
mode:
authorGeorge Goldberg <george@gberg.me>2017-07-11 09:09:15 +0100
committerGitHub <noreply@github.com>2017-07-11 09:09:15 +0100
commit83d53ea98cf5486f89bd4280b6b5ef835da4fd22 (patch)
tree1977949d599b3ce3b023f8699854d974be4d92a8 /store/store.go
parent0cc60abf6a33dca0d8317481f83d0eb2771f43a1 (diff)
downloadchat-83d53ea98cf5486f89bd4280b6b5ef835da4fd22.tar.gz
chat-83d53ea98cf5486f89bd4280b6b5ef835da4fd22.tar.bz2
chat-83d53ea98cf5486f89bd4280b6b5ef835da4fd22.zip
PLT-6475: Elasticsearch Indexing Worker. (#6879)
Diffstat (limited to 'store/store.go')
-rw-r--r--store/store.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/store/store.go b/store/store.go
index 95496b609..062ed0fbd 100644
--- a/store/store.go
+++ b/store/store.go
@@ -168,6 +168,7 @@ type PostStore interface {
GetPostsCreatedAt(channelId string, time int64) StoreChannel
Overwrite(post *model.Post) StoreChannel
GetPostsByIds(postIds []string) StoreChannel
+ GetPostsBatchForIndexing(startTime int64, limit int) StoreChannel
}
type UserStore interface {