Registries provide a common way to retrieve items registered using a
Selector.See: Description
| Interface | Description |
|---|---|
| Registration<T> | |
| Registry<T> |
Implementations of this interface manage a registry of objects that works sort of like a Map, except Registries don't
use simple keys, they use
Selectors to map their objects. |
| Class | Description |
|---|---|
| CachableRegistration<T> | |
| CachingRegistry<T> |
Implementation of
Registry that uses a partitioned cache that partitions on thread
id. |
| Registries |
Created by jbrisbin on 1/27/15.
|
| SimpleCachingRegistry<T> |
A naive caching Registry implementation for use in situations that the default
CachingRegistry can't be used
due to its reliance on the gs-collections library. |
Registries provide a common way to retrieve items registered using a
Selector.