Inheritance diagram for org.openmobileis.database.fastobjectdb.FODBCollectionDescriptor:
Definition at line 36 of file FODBCollectionDescriptor.java.
Public Member Functions | |
FODBCollectionDescriptor (String collectionName, Class objectType) | |
boolean | isCompressed () |
if isCompressed return true, all stored data object in the collection are zipped. | |
void | setCompressed (boolean compressed) |
if set to true, all stored data object in the colleciton are zipped. | |
boolean | isSynchronize () |
void | setSynchronize (boolean synchronize) |
String | getCollectionName () |
Class | getObjectType () |
Static Package Attributes | |
static final long | serialVersionUID = 5521257935120563452L |
boolean org.openmobileis.database.fastobjectdb.FODBCollectionDescriptor.isCompressed | ( | ) |
if isCompressed return true, all stored data object in the collection are zipped.
To gzip collection allow to gain around 25% of the collection file length but increase the synhro file size for complete synchro.
gzip |
Definition at line 60 of file FODBCollectionDescriptor.java.
Referenced by org.openmobileis.database.fastobjectdb.db.store.FODBCollectionFile.isCompressed(), org.openmobileis.database.fastobjectdb.db.store.FODBCollectionFile.readObject(), and org.openmobileis.database.fastobjectdb.db.store.FODBCollectionFile.writeObject().
void org.openmobileis.database.fastobjectdb.FODBCollectionDescriptor.setCompressed | ( | boolean | compressed | ) |
if set to true, all stored data object in the colleciton are zipped.
To gzip collection allow to gain around 25% of the collection file length but increase the synhro file size for complete synchro.
gzip |
Definition at line 70 of file FODBCollectionDescriptor.java.