See: Description
| Class | Description |
|---|---|
| BatchPartialSuccessRecordingClassWriter<K,V> |
Simulate Partial Success in batch operations.
|
| CacheLoaderClient<K,V> |
A
CacheLoader that delegates requests to a CacheLoaderServer. |
| CacheLoaderServer<K,V> |
A
Server that handles CacheLoader requests from a
CacheLoaderClient and delegates them to an underlying CacheLoader. |
| CacheWriterClient<K,V> |
A
CacheWriter that delegates requests to a CacheWriterServer. |
| CacheWriterServer<K,V> |
A
Server that handles CacheWriter requests from a
CacheWriterClient and delegates them to an underlying CacheWriter. |
| FailingCacheLoader<K,V> |
A
CacheLoader implementation that always throws a
UnsupportedOperationException, regardless of the request. |
| FailingCacheWriter<K,V> |
A
CacheWriter implementation that always throws a
UnsupportedOperationException, regardless of the request. |
| NullValueCacheLoader<K,V> |
A
CacheLoader implementation that always returns null
values for keys requested. |
| RecordingCacheLoader<K> |
A
CacheLoader implementation that:
returns the key as the value for each key load request
throws a NullPointerException when an attempt to load a
null key is attempted
|
| RecordingCacheWriter<K,V> |
A CacheWriter implementation that records the entries written and deleted from it so
that they may be later asserted.
|
Copyright © 2019. All rights reserved.