Interface | Description |
---|---|
ContextAwareSelectionDelegate |
Visitor interface to apply the configured sharding strategy to a list of LuceneWork;
this list is usually the set of operations to be applied in a transactional context.
|
QueueingProcessor |
Pile work operations
No thread safety has to be implemented, the queue being scoped already
The implementation must be "stateless" wrt the queue through (ie not store the queue state)
FIXME this Interface does not make much sense, since the impl will not be changed
|
StreamingOperationSelectionDelegate |
Sends a single operation to the related backends, considering the sharding strategy.
|
WorkVisitor<T> |
A visitor delegate to manipulate a LuceneWork
needs to implement this interface.
|
Class | Description |
---|---|
BatchedQueueingProcessor |
Batch work until
BatchedQueueingProcessor.performWorks(org.hibernate.search.backend.impl.WorkQueue) is called. |
PostTransactionWorkQueueSynchronization |
Execute some work inside a transaction synchronization
|
StreamingSelectionVisitor |
This visitor applies the selection logic from the plugged IndexShardingStrategies to
stream operations, as used by optimize() and batching operations.
|
TransactionalSelectionVisitor |
This visitor applies the selection logic from the plugged IndexShardingStrategies to
transactional operations, so similar to StreamingSelectionVisitor but preparing a
context bound list of operations instead of sending all changes directly to the backend.
|
TransactionalWorker |
Queue works per transaction.
|
WorkerFactory | |
WorkQueue | |
WorkQueuePerIndexSplitter |
Used by
ContextAwareSelectionDelegate to split a list of operations
according to the multiple IndexManagers it needs to be routed to. |
Copyright © 2006–2013 Hibernate. All rights reserved.