Package | Description |
---|---|
com.amazon.carbonado.repo.indexed |
Repository implementation that adds index support for repositories that have
little or no index support.
|
com.amazon.carbonado.repo.jdbc |
Repository implementation that connects to an external SQL database via
JDBC.
|
com.amazon.carbonado.repo.logging |
Repository implementation which logs activity against it.
|
com.amazon.carbonado.repo.map |
Volatile repository implementation backed by a concurrent map.
|
com.amazon.carbonado.repo.replicated |
Repository implementation that supports replication between two
repositories.
|
com.amazon.carbonado.repo.sleepycat |
Repository implementation backed by a Sleepycat (BDB, Berkeley)
database.
|
com.amazon.carbonado.spi |
Service Provider Interface for Carbonado.
|
Modifier and Type | Class and Description |
---|---|
class |
IndexedRepositoryBuilder
Repository builder for the indexed repository.
|
Modifier and Type | Method and Description |
---|---|
RepositoryBuilder |
IndexedRepositoryBuilder.getWrappedRepository() |
Modifier and Type | Method and Description |
---|---|
void |
IndexedRepositoryBuilder.setWrappedRepository(RepositoryBuilder repoBuilder)
Set the required wrapped respository, which must support the
IndexInfoCapability . |
Modifier and Type | Class and Description |
---|---|
class |
JDBCRepositoryBuilder
Builds a repository instance backed by a JDBC accessible database.
|
Modifier and Type | Class and Description |
---|---|
class |
LoggingRepositoryBuilder
Repository implementation which logs activity against it.
|
Modifier and Type | Method and Description |
---|---|
RepositoryBuilder |
LoggingRepositoryBuilder.getActualRepositoryBuilder()
Returns the Repository that all calls are wrapped to.
|
Modifier and Type | Method and Description |
---|---|
void |
LoggingRepositoryBuilder.setActualRepositoryBuilder(RepositoryBuilder builder)
Set the Repository to wrap all calls to.
|
Modifier and Type | Class and Description |
---|---|
class |
MapRepositoryBuilder
Volatile repository implementation backed by a concurrent map.
|
Modifier and Type | Class and Description |
---|---|
class |
ReplicatedRepositoryBuilder
Repository builder for the replicated repository.
|
Modifier and Type | Method and Description |
---|---|
RepositoryBuilder |
ReplicatedRepositoryBuilder.getMasterRepositoryBuilder() |
RepositoryBuilder |
ReplicatedRepositoryBuilder.getReplicaRepositoryBuilder() |
Modifier and Type | Method and Description |
---|---|
void |
ReplicatedRepositoryBuilder.setMasterRepositoryBuilder(RepositoryBuilder masterRepositoryBuilder)
Set "master" respository to replicate from, which is required.
|
void |
ReplicatedRepositoryBuilder.setReplicaRepositoryBuilder(RepositoryBuilder replicaRepositoryBuilder)
Set "replica" respository to replicate to, which is required.
|
Modifier and Type | Class and Description |
---|---|
class |
BDBRepositoryBuilder
Builder and configuration options for BDBRepository.
|
Modifier and Type | Class and Description |
---|---|
class |
AbstractRepositoryBuilder
Abstract builder class for opening repositories.
|
Constructor and Description |
---|
BelatedRepositoryCreator(org.apache.commons.logging.Log log,
RepositoryBuilder builder,
java.util.concurrent.atomic.AtomicReference<Repository> rootRef,
int minRetryDelayMillis) |
BelatedRepositoryCreator(org.apache.commons.logging.Log log,
RepositoryBuilder builder,
int minRetryDelayMillis) |
Copyright © 2006-2013 Amazon Technologies, Inc.. All Rights Reserved.