|
Berkeley DB version 5.3.28 |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object com.sleepycat.persist.raw.RawStore
public class RawStore
Provides access to the raw data in a store for use by general purpose tools.
A RawStore
provides access to stored entities without using
entity classes or key classes. Keys are represented as simple type objects
or, for composite keys, as RawObject
instances, and entities are
represented as RawObject
instances.
RawStore
objects are thread-safe. Multiple threads may safely
call the methods of a shared RawStore
object.
When using a RawStore
, the current persistent class definitions
are not used. Instead, the previously stored metadata and class definitions
are used. This has several implications:
EntityModel
may not be specified using StoreConfig.setModel(com.sleepycat.persist.model.EntityModel)
. In other words, the configured model must be
null (the default).
Constructor Summary | |
---|---|
RawStore(Environment env,
String storeName,
StoreConfig config)
Opens an entity store for raw data access. |
Method Summary | |
---|---|
void |
close()
Closes all databases and sequences that were opened by this model. |
StoreConfig |
getConfig()
Returns a copy of the entity store configuration. |
Environment |
getEnvironment()
Returns the environment associated with this store. |
EntityModel |
getModel()
Returns the last configured and stored entity model for this store. |
Mutations |
getMutations()
Returns the set of mutations that were configured and stored previously. |
PrimaryIndex<Object,RawObject> |
getPrimaryIndex(String entityClass)
Opens the primary index for a given entity class. |
SecondaryIndex<Object,Object,RawObject> |
getSecondaryIndex(String entityClass,
String keyName)
Opens the secondary index for a given entity class and secondary key name. |
String |
getStoreName()
Returns the name of this store. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public RawStore(Environment env, String storeName, StoreConfig config) throws StoreNotFoundException, DatabaseException
env
- an open Berkeley DB environment.storeName
- the name of the entity store within the given
environment.config
- the store configuration, or null to use default
configuration properties.
IllegalArgumentException
- if the Environment
is
read-only and the config ReadOnly
property is false.
StoreNotFoundException
DatabaseException
Method Detail |
---|
public PrimaryIndex<Object,RawObject> getPrimaryIndex(String entityClass) throws DatabaseException
DatabaseException
- the base class for all BDB exceptions.public SecondaryIndex<Object,Object,RawObject> getSecondaryIndex(String entityClass, String keyName) throws DatabaseException
DatabaseException
- the base class for all BDB exceptions.public Environment getEnvironment()
public StoreConfig getConfig()
public String getStoreName()
public EntityModel getModel()
public Mutations getMutations()
public void close() throws DatabaseException
WARNING: To guard against memory leaks, the application should discard all references to the closed handle. While BDB makes an effort to discard references from closed objects to the allocated memory for an environment, this behavior is not guaranteed. The safe course of action for an application is to discard all references to closed BDB objects.
DatabaseException
- the base class for all BDB exceptions.
|
Berkeley DB version 5.3.28 |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |