You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
this library instances a bunch of CoreIndexStreams, each with a storage (random-access-storage) instance. Every CoreIndexStream gets added to the MultiCoreIndexStream.
Options to be able to close every storage instance could be:
Expose storage from CoreIndexStream. On MultiCoreIndexStream on the [kdestroyPromise]() method (or a different close method?), iterate over this.#streams, access each instance of storage and close it
On MultiCoreIndexer class, keep track of each storage instance (adding them to a list or smth - would I be making copies or are they just references?). This would probably happen on the static method defaultStorage
The text was updated successfully, but these errors were encountered:
this library instances a bunch of
CoreIndexStream
s, each with a storage (random-access-storage) instance. EveryCoreIndexStream
gets added to theMultiCoreIndexStream
.Options to be able to close every storage instance could be:
CoreIndexStream
. OnMultiCoreIndexStream
on the[kdestroyPromise]()
method (or a differentclose
method?), iterate overthis.#streams
, access each instance ofstorage
and close itMultiCoreIndexer
class, keep track of each storage instance (adding them to a list or smth - would I be making copies or are they just references?). This would probably happen on the static methoddefaultStorage
The text was updated successfully, but these errors were encountered: