Interface IndexWriter.IEvent
Interface for internal atomic events. See Lucene.Net.Index.DocumentsWriter for details. Events are executed concurrently and no order is guaranteed. Each event should only rely on the serializeability within it's process method. All actions that must happen before or after a certain action must be encoded inside the Process(IndexWriter, Boolean, Boolean) method.
Assembly: DistributedLucene.Net.dll
Syntax
public interface IEvent
Methods
Name | Description |
---|---|
Process(IndexWriter, Boolean, Boolean) | Processes the event. this method is called by the IndexWriter passed as the first argument. |