DOC HOME SITE MAP MAN PAGES GNU INFO SEARCH PRINT BOOK
 
Berkeley DB
version 4.4.20

com.sleepycat.db
Class SequenceStats

java.lang.Object
  extended bycom.sleepycat.db.SequenceStats

public class SequenceStats
extends Object

A SequenceStats object is used to return sequence statistics.


Method Summary
 int getCacheSize()
          The number of values that will be cached in this handle.
 long getCurrent()
          The current value of the sequence in the database.
 int getFlags()
          The flags value for the sequence.
 long getLastValue()
          The last cached value of the sequence.
 long getMax()
          The maximum permitted value of the sequence.
 long getMin()
          The minimum permitted value of the sequence.
 int getNowait()
          The number of times that a thread of control was able to obtain handle mutex without waiting.
 long getValue()
          The current cached value of the sequence.
 int getWait()
          The number of times a thread of control was forced to wait on the handle mutex.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

getCurrent

public long getCurrent()
The current value of the sequence in the database.


getValue

public long getValue()
The current cached value of the sequence.


getLastValue

public long getLastValue()
The last cached value of the sequence.


getMin

public long getMin()
The minimum permitted value of the sequence.


getMax

public long getMax()
The maximum permitted value of the sequence.


getCacheSize

public int getCacheSize()
The number of values that will be cached in this handle.


getWait

public int getWait()
The number of times a thread of control was forced to wait on the handle mutex.


getNowait

public int getNowait()
The number of times that a thread of control was able to obtain handle mutex without waiting.


getFlags

public int getFlags()
The flags value for the sequence.


Berkeley DB
version 4.4.20

Copyright (c) 1996-2005 Sleepycat Software, Inc. - All rights reserved.