NodeEventHub
Inheritance: java.lang.Object
public abstract class NodeEventHub
Provides node events for subscribing.
Constructors
Constructor | Description |
---|---|
NodeEventHub() |
Fields
Field | Description |
---|---|
ConfigurationCompleted | Occurs when the search network configuration process is finished. |
IndexingCompleted | Occurs when indexing of all enqueued documents is finished. |
DeletionCompleted | Occurs when all enqueued deletions of documents are finished. |
OptimizationCompleted | Occurs when optimization of all nodes is finished. |
SynchronizationCompleted | Occurs when synchronization with all nodes is finished. |
AttributeChangesCompleted | Occurs when all enqueued attribute changes are finished. |
StatusChanged | Occurs when the search network status changes. |
DataExtracted | Occurs when the data has been extracted from a document. |
DocumentIndexed | Occurs when a document has been indexed. |
DocumentDeleted | Occurs when a document has been deleted. |
ErrorOccurred | Occurs when an error occurs in one of the nodes of the search network. |
IndexingProgressChanged | Occurs when the progress of the indexing operation has changed. |
OptimizationProgressChanged | Occurs when the progress of the optimization operation has changed. |
NodeEventHub()
public NodeEventHub()
ConfigurationCompleted
public final Event<EventHandler> ConfigurationCompleted
Occurs when the search network configuration process is finished.
IndexingCompleted
public final Event<EventHandler> IndexingCompleted
Occurs when indexing of all enqueued documents is finished.
DeletionCompleted
public final Event<EventHandler> DeletionCompleted
Occurs when all enqueued deletions of documents are finished.
OptimizationCompleted
public final Event<EventHandler> OptimizationCompleted
Occurs when optimization of all nodes is finished.
SynchronizationCompleted
public final Event<EventHandler> SynchronizationCompleted
Occurs when synchronization with all nodes is finished.
AttributeChangesCompleted
public final Event<EventHandler> AttributeChangesCompleted
Occurs when all enqueued attribute changes are finished.
StatusChanged
public final Event<EventHandler<StatusChangedEventArgs>> StatusChanged
Occurs when the search network status changes.
DataExtracted
public final Event<EventHandler<DataExtractedEventArgs>> DataExtracted
Occurs when the data has been extracted from a document.
DocumentIndexed
public final Event<EventHandler<DocumentIndexedEventArgs>> DocumentIndexed
Occurs when a document has been indexed.
DocumentDeleted
public final Event<EventHandler<DocumentDeletedEventArgs>> DocumentDeleted
Occurs when a document has been deleted.
ErrorOccurred
public final Event<EventHandler<ErrorOccurredEventArgs>> ErrorOccurred
Occurs when an error occurs in one of the nodes of the search network.
IndexingProgressChanged
public final Event<EventHandler<NetworkIndexingProgressEventArgs>> IndexingProgressChanged
Occurs when the progress of the indexing operation has changed.
OptimizationProgressChanged
public final Event<EventHandler<NetworkOptimizationProgressEventArgs>> OptimizationProgressChanged
Occurs when the progress of the optimization operation has changed.