Registries provide a common way to retrieve items registered using a
Selector.See: Description
| Interface | Description |
|---|---|
| Registration<K,V> | |
| Registry<K,V> |
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<K,V> | |
| CachingRegistry<K,V> |
Implementation of
Registry that uses a partitioned cache that partitions on thread
id. |
| Registries | |
| SimpleCachingRegistry<K,V> |
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.