Serialized Form


Package com.sleepycat.je

Class com.sleepycat.je.BtreeStats extends DatabaseStats implements Serializable

Serialized Fields

binCount

long binCount

dbinCount

long dbinCount

deletedLNCount

long deletedLNCount

dupCountLNCount

long dupCountLNCount

inCount

long inCount

dinCount

long dinCount

lnCount

long lnCount

mainTreeMaxDepth

int mainTreeMaxDepth

duplicateTreeMaxDepth

int duplicateTreeMaxDepth

insByLevel

long[] insByLevel

binsByLevel

long[] binsByLevel

dinsByLevel

long[] dinsByLevel

dbinsByLevel

long[] dbinsByLevel

Class com.sleepycat.je.DatabaseException extends java.lang.Exception implements Serializable

Class com.sleepycat.je.DatabaseNotFoundException extends DatabaseException implements Serializable

Class com.sleepycat.je.DatabaseStats extends java.lang.Object implements Serializable

Class com.sleepycat.je.DeadlockException extends DatabaseException implements Serializable

Class com.sleepycat.je.EnvironmentStats extends java.lang.Object implements Serializable

Serialized Fields

splitBins

int splitBins
The number of bins encountered by the INCompressor that were split between the time they were put on the compressor queue and when the compressor ran.


dbClosedBins

int dbClosedBins
The number of bins encountered by the INCompressor that had their database closed between the time they were put on the compressor queue and when the compressor ran.


cursorsBins

int cursorsBins
The number of bins encountered by the INCompressor that had cursors referring to them when the compressor ran.


nonEmptyBins

int nonEmptyBins
The number of bins encountered by the INCompressor that were not actually empty when the compressor ran.


processedBins

int processedBins
The number of bins that were successfully processed by the IN Compressor.


inCompQueueSize

int inCompQueueSize
The number of entries in the INCompressor queue when the getStats() call was made.


nEvictPasses

int nEvictPasses
The number of passes made to the evictor.


nNodesSelected

long nNodesSelected
The accumulated number of nodes selected to evict.


nNodesScanned

long nNodesScanned
The accumulated number of nodes scanned in order to select the eviction set.


nNodesExplicitlyEvicted

long nNodesExplicitlyEvicted
The accumulated number of nodes evicted.


nBINsStripped

long nBINsStripped
The number of BINs stripped by the evictor.


requiredEvictBytes

long requiredEvictBytes
The number of bytes we need to evict in order to get under budget.


nCheckpoints

int nCheckpoints
The total number of checkpoints run so far.


lastCheckpointId

long lastCheckpointId
The Id of the last checkpoint.


nFullINFlush

int nFullINFlush
The accumulated number of full INs flushed to the log.


nFullBINFlush

int nFullBINFlush
The accumulated number of full BINs flushed to the log.


nDeltaINFlush

int nDeltaINFlush
The accumulated number of Delta INs flushed to the log.


lastCheckpointStart

long lastCheckpointStart
The location in the log of the last checkpoint start.


lastCheckpointEnd

long lastCheckpointEnd
The location in the log of the last checkpoint end.


cleanerBacklog

int cleanerBacklog
The number of files to be cleaned to reach the target utilization.


nCleanerRuns

int nCleanerRuns
The number of cleaner runs this session.


nCleanerDeletions

int nCleanerDeletions
The number of cleaner file deletions this session.


nINsObsolete

int nINsObsolete
The accumulated number of INs obsolete.


nINsCleaned

int nINsCleaned
The accumulated number of INs cleaned.


nINsDead

int nINsDead
The accumulated number of INs that were not found in the tree anymore (deleted).


nINsMigrated

int nINsMigrated
The accumulated number of INs migrated.


nLNsObsolete

int nLNsObsolete
The accumulated number of LNs obsolete.


nLNsCleaned

int nLNsCleaned
The accumulated number of LNs cleaned.


nLNsDead

int nLNsDead
The accumulated number of LNs that were not found in the tree anymore (deleted).


nLNsLocked

int nLNsLocked
The accumulated number of LNs encountered that were locked.


nLNsMigrated

int nLNsMigrated
The accumulated number of LNs encountered that were migrated forward in the log.


nLNsMarked

int nLNsMarked
The accumulated number of LNs that were marked for migration during cleaning.


nLNQueueHits

int nLNQueueHits
The accumulated number of LNs processed without a tree lookup.


nPendingLNsProcessed

int nPendingLNsProcessed
The accumulated number of LNs processed because they were previously locked.


nMarkedLNsProcessed

int nMarkedLNsProcessed
The accumulated number of LNs processed because they were previously marked for migration.


nToBeCleanedLNsProcessed

int nToBeCleanedLNsProcessed
The accumulated number of LNs processed because they are soon to be cleaned.


nClusterLNsProcessed

int nClusterLNsProcessed
The accumulated number of LNs processed because they qualify for clustering.


nPendingLNsLocked

int nPendingLNsLocked
The accumulated number of pending LNs that could not be locked for migration because of a long duration application lock.


nCleanerEntriesRead

int nCleanerEntriesRead
The accumulated number of log entries read by the cleaner.


cacheDataBytes

long cacheDataBytes

nNotResident

long nNotResident

nCacheMiss

long nCacheMiss

nLogBuffers

int nLogBuffers

bufferBytes

long bufferBytes

nFSyncs

long nFSyncs

nFSyncRequests

long nFSyncRequests

nFSyncTimeouts

long nFSyncTimeouts

nRepeatFaultReads

long nRepeatFaultReads

nTempBufferWrites

long nTempBufferWrites

nRepeatIteratorReads

long nRepeatIteratorReads

Class com.sleepycat.je.LockNotGrantedException extends DeadlockException implements Serializable

Class com.sleepycat.je.LockStats extends java.lang.Object implements Serializable

Serialized Fields

nTotalLocks

int nTotalLocks
Total locks currently in lock table.


nReadLocks

int nReadLocks
Total read locks currently held.


nWriteLocks

int nWriteLocks
Total write locks currently held.


nWaiters

int nWaiters
Total transactions waiting for locks.


nOwners

int nOwners
Total lock owners in lock table.


nRequests

long nRequests
Number of times a lock request was made.


nWaits

long nWaits
Number of times a lock request blocked.


lockTableLatchStats

LatchStats lockTableLatchStats
LockTable latch stats.

Class com.sleepycat.je.PreloadStats extends java.lang.Object implements Serializable

Serialized Fields

nINsLoaded

int nINsLoaded
The number of INs, BINs, LNs, DINs, DBINs, and DupCountLNs loaded during the preload() operation.


nBINsLoaded

int nBINsLoaded

nLNsLoaded

int nLNsLoaded

nDINsLoaded

int nDINsLoaded

nDBINsLoaded

int nDBINsLoaded

nDupCountLNsLoaded

int nDupCountLNsLoaded

status

PreloadStatus status
The status of the preload() operation.

Class com.sleepycat.je.PreloadStatus extends java.lang.Object implements Serializable

Serialized Fields

statusName

java.lang.String statusName

Class com.sleepycat.je.RunRecoveryException extends DatabaseException implements Serializable

Serialized Fields

alreadyThrown

boolean alreadyThrown

Class com.sleepycat.je.TransactionStats extends java.lang.Object implements Serializable

Serialized Fields

lastCheckpointTime

long lastCheckpointTime
The time the last completed checkpoint finished (as the number of seconds since the Epoch, returned by the IEEE/ANSI Std 1003.1 (POSIX) time interface).


lastTxnId

long lastTxnId
The last transaction ID allocated.


nActive

int nActive
The number of transactions that are currently active.


nBegins

int nBegins
The number of transactions that have begun.


nAborts

int nAborts
The number of transactions that have aborted.


nCommits

int nCommits
The number of transactions that have committed.


nXAAborts

int nXAAborts
The number of XA transactions that have aborted.


nXAPrepares

int nXAPrepares
The number of XA transactions that have been prepared.


nXACommits

int nXACommits
The number of XA transactions that have committed.


activeTxns

TransactionStats.Active[] activeTxns
The array of active transactions. Each element of the array is an object of type TransactionStats.Active.

Class com.sleepycat.je.TransactionStats.Active extends java.lang.Object implements Serializable

Serialized Fields

txnId

long txnId
The transaction ID of the transaction.


parentId

long parentId
The transaction ID of the parent transaction (or 0, if no parent).


name

java.lang.String name
The transaction name, including the thread name if available.


Package com.sleepycat.je.dbi

Class com.sleepycat.je.dbi.DbConfigException extends DatabaseException implements Serializable

Class com.sleepycat.je.dbi.RangeRestartException extends DatabaseException implements Serializable


Package com.sleepycat.je.jca.ra

Class com.sleepycat.je.jca.ra.JEConnectionFactoryImpl extends java.lang.Object implements Serializable

Serialized Fields

manager

ConnectionManager manager

factory

ManagedConnectionFactory factory

reference

javax.naming.Reference reference

Class com.sleepycat.je.jca.ra.JEException extends java.lang.Exception implements Serializable

Class com.sleepycat.je.jca.ra.JEManagedConnectionFactory extends java.lang.Object implements Serializable


Package com.sleepycat.je.latch

Class com.sleepycat.je.latch.LatchException extends DatabaseException implements Serializable

Class com.sleepycat.je.latch.LatchNotHeldException extends LatchException implements Serializable

Class com.sleepycat.je.latch.LatchStats extends java.lang.Object implements Serializable

Serialized Fields

nAcquiresNoWaiters

int nAcquiresNoWaiters

nAcquiresSelfOwned

int nAcquiresSelfOwned
Number of times acquire() was called when the latch was already owned by the caller.


nAcquiresUpgrade

int nAcquiresUpgrade
Number of times acquire() was called with allowNesting=true when the latch was already owned by the caller for shared access.


nAcquiresWithContention

int nAcquiresWithContention
Number of times acquire() was called when the latch was already owned by the some other thread.


nAcquireNoWaitSuccessful

int nAcquireNoWaitSuccessful
Number of times acquireNoWait() was called when the latch was successfully acquired.


nAcquireNoWaitUnsuccessful

int nAcquireNoWaitUnsuccessful
Number of unsuccessful acquireNoWait() calls.


nAcquireSharedSuccessful

int nAcquireSharedSuccessful
Number of times acquireShared() was called when the latch was successfully acquired.


nReleases

int nReleases
Numbed of calls to release();


Package com.sleepycat.je.log

Class com.sleepycat.je.log.DbChecksumException extends RunRecoveryException implements Serializable

Class com.sleepycat.je.log.LogException extends DatabaseException implements Serializable

Class com.sleepycat.je.log.LogFileNotFoundException extends LogException implements Serializable


Package com.sleepycat.je.recovery

Class com.sleepycat.je.recovery.RecoveryException extends RunRecoveryException implements Serializable


Package com.sleepycat.je.tree

Class com.sleepycat.je.tree.CursorsExistException extends java.lang.Exception implements Serializable

Class com.sleepycat.je.tree.DuplicateEntryException extends DatabaseException implements Serializable

Class com.sleepycat.je.tree.InconsistentNodeException extends DatabaseException implements Serializable

Class com.sleepycat.je.tree.NodeNotEmptyException extends java.lang.Exception implements Serializable


Package com.sleepycat.je.utilint

Class com.sleepycat.je.utilint.InternalException extends DatabaseException implements Serializable

Class com.sleepycat.je.utilint.LevelOrderedINMap extends java.util.TreeMap implements Serializable

Class com.sleepycat.je.utilint.NotImplementedYetException extends java.lang.RuntimeException implements Serializable


Package com.sleepycat.persist.evolve

Class com.sleepycat.persist.evolve.Conversion extends Mutation implements Serializable

Class com.sleepycat.persist.evolve.DeletedClassException extends DatabaseException implements Serializable

Class com.sleepycat.persist.evolve.Deleter extends Mutation implements Serializable

Class com.sleepycat.persist.evolve.IncompatibleClassException extends java.lang.Exception implements Serializable

Class com.sleepycat.persist.evolve.Mutation extends java.lang.Object implements Serializable

Class com.sleepycat.persist.evolve.Mutations extends java.lang.Object implements Serializable

Class com.sleepycat.persist.evolve.Renamer extends Mutation implements Serializable


Package com.sleepycat.persist.impl

Class com.sleepycat.persist.impl.ComplexFormat extends Format implements Serializable

serialVersionUID: -2847843033590454917L

Serialization Methods

readObject

void readObject(java.lang.Object o,
                EntityInput input,
                boolean rawAccess)

writeObject

void writeObject(java.lang.Object o,
                 EntityOutput output,
                 boolean rawAccess)
Serialized Fields

clsMeta

ClassMetadata clsMeta

entityMeta

EntityMetadata entityMeta

priKeyField

FieldInfo priKeyField

secKeyFields

java.util.List<E> secKeyFields

nonKeyFields

java.util.List<E> nonKeyFields

Class com.sleepycat.persist.impl.CompositeKeyFormat extends Format implements Serializable

serialVersionUID: 306843428409314630L

Serialization Methods

readObject

void readObject(java.lang.Object o,
                EntityInput input,
                boolean rawAccess)

writeObject

void writeObject(java.lang.Object o,
                 EntityOutput output,
                 boolean rawAccess)
Serialized Fields

metadata

ClassMetadata metadata

fields

java.util.List<E> fields

Class com.sleepycat.persist.impl.EnumFormat extends Format implements Serializable

serialVersionUID: 1069833955604373538L

Serialization Methods

readObject

void readObject(java.lang.Object o,
                EntityInput input,
                boolean rawAccess)

writeObject

void writeObject(java.lang.Object o,
                 EntityOutput output,
                 boolean rawAccess)
Serialized Fields

names

java.lang.String[] names

Class com.sleepycat.persist.impl.Format extends java.lang.Object implements Serializable

serialVersionUID: 545633644568489850L

Serialization Methods

readObject

abstract void readObject(java.lang.Object o,
                         EntityInput input,
                         boolean rawAccess)
Called after newInstance() to read the rest of the data bytes and fill in the object contents. If the object was read completely by newInstance(), this method does nothing.


writeObject

abstract void writeObject(java.lang.Object o,
                          EntityOutput output,
                          boolean rawAccess)
Writes a given instance of the target class to the output data bytes. This is the complement of the newInstance()/readObject() pair.

Serialized Fields

id

int id

className

java.lang.String className

version

int version

superFormat

Format superFormat

supertypes

java.util.Set<E> supertypes

Class com.sleepycat.persist.impl.ObjectArrayFormat extends Format implements Serializable

serialVersionUID: 4317004346690441892L

Serialization Methods

readObject

void readObject(java.lang.Object o,
                EntityInput input,
                boolean rawAccess)

writeObject

void writeObject(java.lang.Object o,
                 EntityOutput output,
                 boolean rawAccess)
Serialized Fields

componentFormat

Format componentFormat

nDimensions

int nDimensions

Class com.sleepycat.persist.impl.PersistComparator extends java.lang.Object implements Serializable

serialVersionUID: 5221576538843355317L

Serialized Fields

keyClassName

java.lang.String keyClassName

comositeFieldOrder

java.lang.String[] comositeFieldOrder

Class com.sleepycat.persist.impl.PrimitiveArrayFormat extends Format implements Serializable

serialVersionUID: 8285299924106073591L

Serialization Methods

readObject

void readObject(java.lang.Object o,
                EntityInput input,
                boolean rawAccess)

writeObject

void writeObject(java.lang.Object o,
                 EntityOutput output,
                 boolean rawAccess)
Serialized Fields

componentFormat

SimpleFormat componentFormat

Class com.sleepycat.persist.impl.ProxiedFormat extends Format implements Serializable

serialVersionUID: -1000032651995478768L

Serialization Methods

readObject

void readObject(java.lang.Object o,
                EntityInput input,
                boolean rawAccess)

writeObject

void writeObject(java.lang.Object o,
                 EntityOutput output,
                 boolean rawAccess)
Serialized Fields

proxyFormat

Format proxyFormat

Class com.sleepycat.persist.impl.SimpleFormat extends Format implements Serializable

serialVersionUID: 4595245575868697702L

Serialization Methods

readObject

void readObject(java.lang.Object o,
                EntityInput input,
                boolean rawAccess)
Serialized Fields

primitive

boolean primitive

wrapperFormat

SimpleFormat wrapperFormat

Class com.sleepycat.persist.impl.SimpleFormat.FBool extends SimpleFormat implements Serializable

serialVersionUID: -7724949525068533451L

Serialization Methods

writeObject

void writeObject(java.lang.Object o,
                 EntityOutput output,
                 boolean rawAccess)

Class com.sleepycat.persist.impl.SimpleFormat.FByte extends SimpleFormat implements Serializable

serialVersionUID: 3651752958101447257L

Serialization Methods

writeObject

void writeObject(java.lang.Object o,
                 EntityOutput output,
                 boolean rawAccess)

Class com.sleepycat.persist.impl.SimpleFormat.FChar extends SimpleFormat implements Serializable

serialVersionUID: -7609118195770005374L

Serialization Methods

writeObject

void writeObject(java.lang.Object o,
                 EntityOutput output,
                 boolean rawAccess)

Class com.sleepycat.persist.impl.SimpleFormat.FDate extends SimpleFormat implements Serializable

serialVersionUID: -5665773229869034145L

Serialization Methods

writeObject

void writeObject(java.lang.Object o,
                 EntityOutput output,
                 boolean rawAccess)

Class com.sleepycat.persist.impl.SimpleFormat.FDouble extends SimpleFormat implements Serializable

serialVersionUID: 646904456811041423L

Serialization Methods

writeObject

void writeObject(java.lang.Object o,
                 EntityOutput output,
                 boolean rawAccess)

Class com.sleepycat.persist.impl.SimpleFormat.FFloat extends SimpleFormat implements Serializable

serialVersionUID: 1033413049495053602L

Serialization Methods

writeObject

void writeObject(java.lang.Object o,
                 EntityOutput output,
                 boolean rawAccess)

Class com.sleepycat.persist.impl.SimpleFormat.FInt extends SimpleFormat implements Serializable

serialVersionUID: 2695910006049980013L

Serialization Methods

writeObject

void writeObject(java.lang.Object o,
                 EntityOutput output,
                 boolean rawAccess)

Class com.sleepycat.persist.impl.SimpleFormat.FLong extends SimpleFormat implements Serializable

serialVersionUID: 1872661106534776520L

Serialization Methods

writeObject

void writeObject(java.lang.Object o,
                 EntityOutput output,
                 boolean rawAccess)

Class com.sleepycat.persist.impl.SimpleFormat.FShort extends SimpleFormat implements Serializable

serialVersionUID: -4909138198491785624L

Serialization Methods

writeObject

void writeObject(java.lang.Object o,
                 EntityOutput output,
                 boolean rawAccess)

Class com.sleepycat.persist.impl.SimpleFormat.FString extends SimpleFormat implements Serializable

serialVersionUID: 5710392786480064612L

Serialization Methods

writeObject

void writeObject(java.lang.Object o,
                 EntityOutput output,
                 boolean rawAccess)

Package com.sleepycat.persist.model

Class com.sleepycat.persist.model.ClassMetadata extends java.lang.Object implements Serializable

serialVersionUID: -2520207423701776679L

Serialized Fields

className

java.lang.String className

version

int version

proxiedClassName

java.lang.String proxiedClassName

entityClass

boolean entityClass

primaryKey

PrimaryKeyMetadata primaryKey

secondaryKeys

java.util.Map<K,V> secondaryKeys

compositeKeyFields

java.util.List<E> compositeKeyFields

Class com.sleepycat.persist.model.EntityMetadata extends java.lang.Object implements Serializable

serialVersionUID: 4224509631681963159L

Serialized Fields

className

java.lang.String className

primaryKey

PrimaryKeyMetadata primaryKey

secondaryKeys

java.util.Map<K,V> secondaryKeys

Class com.sleepycat.persist.model.FieldMetadata extends java.lang.Object implements Serializable

serialVersionUID: -9037650229184174279L

Serialized Fields

name

java.lang.String name

className

java.lang.String className

declaringClassName

java.lang.String declaringClassName

Class com.sleepycat.persist.model.PrimaryKeyMetadata extends FieldMetadata implements Serializable

serialVersionUID: 2946863622972437018L

Serialized Fields

sequenceName

java.lang.String sequenceName

Class com.sleepycat.persist.model.SecondaryKeyMetadata extends FieldMetadata implements Serializable

serialVersionUID: 8118924993396722502L

Serialized Fields

keyName

java.lang.String keyName

relationship

Relationship relationship

elementClassName

java.lang.String elementClassName

relatedEntity

java.lang.String relatedEntity

deleteAction

DeleteAction deleteAction

Package com.sleepycat.util

Class com.sleepycat.util.IOExceptionWrapper extends java.io.IOException implements Serializable

Serialized Fields

e

java.lang.Throwable e

Class com.sleepycat.util.RuntimeExceptionWrapper extends java.lang.RuntimeException implements Serializable

Serialized Fields

e

java.lang.Throwable e

Package com.sleepycat.util.keyrange

Class com.sleepycat.util.keyrange.KeyRangeException extends java.lang.IllegalArgumentException implements Serializable



Copyright 2004-2006 Sleepycat, Inc. All Rights Reserved.