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
After the indexer is closed, it won't work any more. However currently behaviour is undefined because we don't keep a reference of the closed state. This is a non-urgent issue, because it's not causing any problems, this is just a question of completeness. Methods should throw an error once it is closed.
The text was updated successfully, but these errors were encountered:
Revisiting this, since the unlink() method requires the indexer to be closed, we should properly track the closing and closed states, and throw for other methods where relevant if state === 'closing' || state === 'closed' and throw for unlink() if state !== 'closed'. @EvanHahn
After the indexer is closed, it won't work any more. However currently behaviour is undefined because we don't keep a reference of the closed state. This is a non-urgent issue, because it's not causing any problems, this is just a question of completeness. Methods should throw an error once it is closed.
The text was updated successfully, but these errors were encountered: