Interface | Description |
---|---|
DeleteEventFactory<K> |
An EventFactory for delete operations on Chunks.
|
EventFactory<K,V> |
A marker interface for all EventFactories.
|
InsertEventFactory<K,V> |
An EventFactory for insert operations on Chunks.
|
QueryEventFactory<K,V> |
An EventFactory for query operations on Chunks.
|
UpdateEventFactory<K,V> |
An EventFactory for update operations on Chunks.
|
Class | Description |
---|---|
DeleteEndEventFactory<K> |
A DeleteEventFactory that just returns DeleteEndEvents at the end of a delete operation.
|
DeleteEventFactory.EmptyDeleteEventFactory<K> |
An empty implementation of the DeleteEventFactory interface.
|
InsertEndEventFactory<K,V> |
An InsertEventFactory that just returns InsertEndEvents at the end of an insert operation.
|
InsertEventFactory.EmptyInsertEventFactory<K,V> |
An empty implementation of the InsertEventFactory interface.
|
QueryEndEventFactory<K,V> |
A QueryEventFactory that just returns QueryEndEvents at the end of a query operation.
|
QueryEventFactory.EmptyQueryEventFactory<K,V> |
An empty implementation of the QueryEventFactory interface.
|
UpdateEndEventFactory<K,V> |
A UpdateEventFactory that just returns UpdateEndEvents at the end of an update operation.
|
UpdateEventFactory.EmptyUpdateEventFactory<K,V> |
An empty implementation of the UpdateEventFactory interface.
|