BaseIndexStore
Defined in: .build/typescript/packages/core/src/storage/index-store/index.ts:20
Extended by
Section titled “Extended by”Constructors
Section titled “Constructors”Constructor
Section titled “Constructor”new BaseIndexStore():
BaseIndexStore
Returns
Section titled “Returns”BaseIndexStore
Methods
Section titled “Methods”getIndexStructs()
Section titled “getIndexStructs()”
abstractgetIndexStructs():Promise<IndexStruct[]>
Defined in: .build/typescript/packages/core/src/storage/index-store/index.ts:21
Returns
Section titled “Returns”Promise<IndexStruct[]>
addIndexStruct()
Section titled “addIndexStruct()”
abstractaddIndexStruct(indexStruct):Promise<void>
Defined in: .build/typescript/packages/core/src/storage/index-store/index.ts:23
Parameters
Section titled “Parameters”indexStruct
Section titled “indexStruct”Returns
Section titled “Returns”Promise<void>
deleteIndexStruct()
Section titled “deleteIndexStruct()”
abstractdeleteIndexStruct(key):Promise<void>
Defined in: .build/typescript/packages/core/src/storage/index-store/index.ts:25
Parameters
Section titled “Parameters”string
Returns
Section titled “Returns”Promise<void>
getIndexStruct()
Section titled “getIndexStruct()”
abstractgetIndexStruct(structId?):Promise<undefined|IndexStruct>
Defined in: .build/typescript/packages/core/src/storage/index-store/index.ts:27
Parameters
Section titled “Parameters”structId?
Section titled “structId?”string
Returns
Section titled “Returns”Promise<undefined | IndexStruct>
persist()
Section titled “persist()”persist(
persistPath):Promise<void>
Defined in: .build/typescript/packages/core/src/storage/index-store/index.ts:29
Parameters
Section titled “Parameters”persistPath
Section titled “persistPath”string = DEFAULT_PERSIST_PATH
Returns
Section titled “Returns”Promise<void>