Package | Description |
---|---|
org.sormula |
Fundamental classes.
|
org.sormula.active.operation |
Thread-safe and transaction-compliant database operations used by
ActiveTable . |
org.sormula.annotation.cache |
Annotations and supporting classes for defining cache configuration.
|
org.sormula.cache |
Fundamental classes used to implement caching that is specified by
type() . |
org.sormula.cache.readonly |
Implementation of
ReadOnlyCache . |
org.sormula.cache.readwrite |
Implementation of
ReadWriteCache . |
org.sormula.cache.writable |
The abstract
WritableCache and supporting classes that are
used for implementing a cache that writes rows to the database. |
Modifier and Type | Class and Description |
---|---|
class |
CachedTable<R>
A cached table with default cache settings.
|
Modifier and Type | Method and Description |
---|---|
protected Cached |
Table.initCachedAnnotation()
Gets the annotation that defines caching.
|
Modifier and Type | Method and Description |
---|---|
protected Cached |
OperationTable.initCachedAnnotation()
|
Modifier and Type | Method and Description |
---|---|
Cached |
CachedAnnotationReader.getAnnotation()
Gets annotation.
|
Modifier and Type | Method and Description |
---|---|
Cached |
AbstractCache.getCachedAnnotation()
Gets the annotations used to configure cache.
|
Constructor and Description |
---|
AbstractCache(Table<R> table,
Cached cachedAnnotation)
Constructs for a table and annotation.
|
Constructor and Description |
---|
ReadOnlyCache(Table<R> table,
Cached cachedAnnotation)
Constructs for a table and cache annotation.
|
Constructor and Description |
---|
ReadWriteCache(Table<R> table,
Cached cachedAnnotation)
Constructs for a table and cache annotation.
|
Constructor and Description |
---|
WritableCache(Table<R> table,
Cached cachedAnnotation)
Constructs for a table and annotation.
|