SequenceConfig Fields

BerkeleyDB

The SequenceConfig type exposes the following members.

Fields

  NameDescription
BackingDatabase
An open database which holds the persistent data for the sequence.
Creation
The policy for how to handle sequence creation.
FreeThreaded
If true, the object returned by the Sequence constructor will be free-threaded; that is, usable by multiple threads within a single address space. Note that if multiple threads create multiple sequences using the same BackingDatabase, that database must have also been opened free-threaded.
key
The record in the database that stores the persistent sequence data.
Wrap
If true, the sequence should wrap around when it is incremented (decremented) past the specified maximum (minimum) value.

See Also