EventIndexing: Rework the index initialization and deletion.

This commit is contained in:
Damir Jelić 2019-11-14 16:13:22 +01:00
parent 448c9a8290
commit 7516f2724a
4 changed files with 63 additions and 31 deletions

View file

@ -206,6 +206,16 @@ export default class BaseEventIndexManager {
throw new Error("Unimplemented");
}
/**
* close our event index.
*
* @return {Promise} A promise that will resolve once the event index has
* been closed.
*/
async closeEventIndex(): Promise<> {
throw new Error("Unimplemented");
}
/**
* Delete our current event index.
*