Interface ICloseable
Represents a source or destination of data that can be closed.
Namespace: Lucene.Net.Util
Assembly: Lucene.Net.dll
Syntax
public interface ICloseable
Remarks
LUCENENET specific - this interface is to be used when a class is designed to be reusable after being closed, unlike IDisposable, when the instance is no longer usable after being disposed.
Methods
Close()
Closes this object in a way that allows it to be reused.
Declaration
void Close()
Remarks
LUCENENET specific - this interface is to be used when a class is designed to be reusable after being closed, unlike IDisposable, when the instance is no longer usable after being disposed.