Namespace consists of interfaces that form the DataStore API.
Each DataStore implementation may support a subset of DataStore API. The supported methods are expressed as a union of these interfaces.
There isn't a .close() method. A DataStore may implement Disposable or AsyncDisposable if it should be explicitly closed.
.close()
Disposable
AsyncDisposable
Namespace consists of interfaces that form the DataStore API.
Remarks
Each DataStore implementation may support a subset of DataStore API. The supported methods are expressed as a union of these interfaces.
There isn't a
.close()
method. A DataStore may implementDisposable
orAsyncDisposable
if it should be explicitly closed.