Interface | Description |
---|---|
Chunk<K,V> | |
DefaultChunk.OnProgressUpdateListener | |
QueryResult<V> |
A container for the results of a query on a Chunk.
|
VolatileChunk.KeyFactory<K,V> |
A factory class for producing keys from values.
|
Class | Description |
---|---|
Chunk.EmptyChunk<K,V> |
An empty implementation of the Chunk interface
|
DefaultChunk<K,V> |
A default implementation of the Chunk interface that implements dispatching events.
|
DefaultChunk.OnProgressUpdateListener.EmptyOnProgressUpdateListener | |
QueryResult.EmptyQueryResult<V> |
An empty implementation of QueryResult interface that does nothing.
|
QueryResult.IterableQueryResult<V> |
An implementation of QueryResult interface that wraps a collection of values.
|
QueryResult.SingletonQueryResult<V> |
An implementation of QueryResult interface that wraps a single value.
|
VolatileChunk<K,V> |
A simple extension of DefaultChunk that stores data in memory.
|
VolatileChunk.KeyFactory.AutoIncrementFunction<V> | |
VolatileChunk.KeyFactory.AutoIncrementingIntegerKeyFactory<V> |
An implementation of KeyFactory that returns an auto-incrementing Integer as a key.
|
VolatileChunk.KeyFactory.AutoIncrementingStringKeyFactory<V> |
An implementation of KeyFactory that returns an auto-incrementing String as a key.
|
VolatileChunk.KeyFactory.DefaultKeyFactory<K,V> |