Inheritance diagram for com::sleepycat::bind::serial::ClassCatalog:
Public Member Functions | |
void | close () throws DatabaseException |
byte[] | getClassID (ObjectStreamClass classDesc) throws DatabaseException, ClassNotFoundException |
ObjectStreamClass | getClassFormat (byte[] classID) throws DatabaseException, ClassNotFoundException |
A catalog is used to store class descriptions separately from serialized objects, to avoid redundantly stored information with each object. When serialized objects are stored in a database, a StoredClassCatalog should be used.
This information is used for serialization of class descriptors or java.io.ObjectStreamClass objects, each of which represents a unique class format. For each unique format, a unique class ID is assigned by the catalog. The class ID can then be used in the serialization stream in place of the full class information. When used with SerialInput and SerialOutput or any of the serial bindings, the use of the catalog is transparent to the application.
Definition at line 35 of file ClassCatalog.java.
|
Close a catalog database and release any cached resources. Implemented in com::sleepycat::bind::serial::StoredClassCatalog, com::sleepycat::bind::serial::test::NullClassCatalog, and com::sleepycat::bind::serial::test::TestClassCatalog. |
|
Return the ObjectStreamClass for the given class ID. This may or may not be the current class format, depending on whether the class has changed since the class ID was generated.
Implemented in com::sleepycat::bind::serial::StoredClassCatalog, com::sleepycat::bind::serial::test::NullClassCatalog, and com::sleepycat::bind::serial::test::TestClassCatalog. |
|
Return the class ID for the current version of the given class description. This is used for storing in serialization streams in place of a full class descriptor, since it is much more compact. To get back the ObjectStreamClass for a class ID, call getClassFormat(byte[]). This function causes a new class ID to be assigned if the class description has changed.
Implemented in com::sleepycat::bind::serial::StoredClassCatalog, com::sleepycat::bind::serial::test::NullClassCatalog, and com::sleepycat::bind::serial::test::TestClassCatalog. |