Uses of Interface
messif.buckets.storage.Storage

Packages that use Storage
messif.buckets.impl Bucket implementations. 
messif.buckets.index.impl Implementation of bucket indexes. 
messif.buckets.storage Bucket physical storage support. 
messif.buckets.storage.impl Implementations of physical bucket storage. 
 

Uses of Storage in messif.buckets.impl
 

Methods in messif.buckets.impl with parameters of type Storage
static
<T> VirtualStorageBucket<T>
VirtualStorageBucket.getBucket(long capacity, long softCapacity, long lowOccupation, boolean occupationAsBytes, Storage<LocalAbstractObject> storage, IndexComparator<T,LocalAbstractObject> comparator)
          Creates a bucket for the given storage and comparator.
 

Uses of Storage in messif.buckets.index.impl
 

Constructors in messif.buckets.index.impl with parameters of type Storage
AddressStorageIndex(Storage<T> storage, IndexComparator<K,T> comparator)
          Creates a new instance of AddressStorageIndex for the specified storage.
 

Uses of Storage in messif.buckets.storage
 

Subinterfaces of Storage in messif.buckets.storage
 interface IntStorage<T>
          Interface for storage that uses int addresses.
 interface IntStorageIndexed<T>
          Interface of an integer storage that supports searching.
 interface LongStorage<T>
          Interface for storage that uses long addresses.
 interface LongStorageIndexed<T>
          Interface of a long storage that supports searching.
 interface StorageIndexed<T>
          Interface of a generic storage that supports searching.
 

Uses of Storage in messif.buckets.storage.impl
 

Classes in messif.buckets.storage.impl that implement Storage
 class DatabaseStorage<T>
          Database-based storage.
 class DiskStorage<T>
          Disk based storage.
 class MemoryStorage<T>
          Memory based storage.