EventIndexPeg: Add a helper method to easily start the crawler.

This commit is contained in:
Damir Jelić 2019-11-26 13:37:53 +01:00
parent 4fe7752f3c
commit 928bb69b11

View File

@ -69,6 +69,11 @@ class EventIndexPeg {
return this.index;
}
start() {
if (this.index === null) return;
this.index.startCrawler();
}
stop() {
if (this.index === null) return;
this.index.stopCrawler();