Uses of Interface
com.db4o.io.Storage
- 
Packages that use Storage Package Description com.db4o.config com.db4o.cs.internal com.db4o.defragment com.db4o.ext com.db4o.internal com.db4o.io 
- 
- 
Uses of Storage in com.db4o.configMethods in com.db4o.config that return Storage Modifier and Type Method Description StorageConfiguration. storage()returns the configuredStorageStorageFileConfiguration. storage()returns the configuredStorage.Methods in com.db4o.config with parameters of type Storage Modifier and Type Method Description voidConfiguration. storage(Storage factory)allows to configure db4o to use a customized byte IO storage mechanism.voidFileConfiguration. storage(Storage storage)allows to configure db4o to use a customized byte IO storage mechanism.
- 
Uses of Storage in com.db4o.cs.internalMethods in com.db4o.cs.internal with parameters of type Storage Modifier and Type Method Description voidClientObjectContainer. backup(Storage targetStorage, java.lang.String path)voidClientObjectContainer. backupSync(Storage targetStorage, java.lang.String path)
- 
Uses of Storage in com.db4o.defragmentMethods in com.db4o.defragment that return Storage Modifier and Type Method Description StorageDefragmentConfig. backupStorage()Methods in com.db4o.defragment with parameters of type Storage Modifier and Type Method Description voidDefragmentConfig. backupStorage(Storage backupStorage)
- 
Uses of Storage in com.db4o.extMethods in com.db4o.ext with parameters of type Storage Modifier and Type Method Description voidExtObjectContainer. backup(Storage targetStorage, java.lang.String path)backs up a database file of an open ObjectContainer.voidExtObjectContainer. backupSync(Storage targetStorage, java.lang.String path)backs up a database file of an open ObjectContainer.
- 
Uses of Storage in com.db4o.internalMethods in com.db4o.internal that return Storage Modifier and Type Method Description static StoragePlatform4. newStorage()StorageConfig4Impl. storage()Methods in com.db4o.internal with parameters of type Storage Modifier and Type Method Description abstract voidExternalObjectContainer. backup(Storage targetStorage, java.lang.String path)voidIoAdaptedObjectContainer. backup(Storage targetStorage, java.lang.String path)voidObjectContainerSession. backup(Storage storage, java.lang.String path)voidTransportObjectContainer. backup(Storage targetStorage, java.lang.String path)abstract voidExternalObjectContainer. backupSync(Storage targetStorage, java.lang.String path)voidIoAdaptedObjectContainer. backupSync(Storage targetStorage, java.lang.String path)voidObjectContainerSession. backupSync(Storage storage, java.lang.String path)voidTransportObjectContainer. backupSync(Storage targetStorage, java.lang.String path)voidConfig4Impl. storage(Storage factory)
- 
Uses of Storage in com.db4o.ioClasses in com.db4o.io that implement Storage Modifier and Type Class Description classCachingStorageCaching storage adapter to cache db4o database data in memory until the underlyingBinis instructed to flush its data whenBin.sync()is called.
 You can override theCachingStorage.newCache()method if you want to work with a different caching strategy.classFileStorageStorage adapter to store db4o database data to physical files on hard disc.classMemoryStorageclassNonFlushingStorageStorage adapter that does not pass flush calls on to its delegate.classPagingMemoryStorageclassStorageDecoratorWrapper base class for all classes that wrap Storage.Fields in com.db4o.io declared as Storage Modifier and Type Field Description protected StorageStorageDecorator. _storageConstructors in com.db4o.io with parameters of type Storage Constructor Description CachingStorage(Storage storage)default constructor to create a Caching storage with the default page count of 64 and the default page size of 1024.CachingStorage(Storage storage, int pageCount, int pageSize)constructor to set up a CachingStorage with a configured page count and page sizeNonFlushingStorage(Storage storage)StorageDecorator(Storage storage)
 
-