Uses of Class
org.magnos.data.error.StoreIOException

Packages that use StoreIOException
org.magnos.data   
org.magnos.data.store   
 

Uses of StoreIOException in org.magnos.data
 

Methods in org.magnos.data that throw StoreIOException
 int Store.capacity(int newCapacity)
          Sets the stores size or capacity in bytes.
 void Store.close()
          Closes this store if not closed already.
 StoreAccess Store.create(StoreAccess initialAccess, int initialCapacity)
          Creates the store by opening it with the given access and setting the initial capacity.
 void Store.delete()
          Removes this store from any persisted medium.
 void Store.flush()
          Explicitly writes the data to the store.
 void Store.get(int location, byte[] bytes)
          Reads an array of bytes from the store at the given location.
 void Store.get(int location, byte[] bytes, int offset, int length)
          Reads from the store and puts it in a section in the array of bytes.
 void Store.get(int location, java.nio.ByteBuffer buffer)
          Reads a ByteBuffer to the store at the given location.
 byte[] Store.get(int location, int size)
          Returns an array of bytes read from the store at the given location.
 void Store.load()
          Explicitly loads the data from the store into memory.
 StoreAccess Store.open(StoreAccess initialAccess)
          Explicitly opens this store for reading and writing.
 void Store.put(int location, byte[] bytes)
          Writes the array of bytes to the store at the given location.
 void Store.put(int location, byte[] bytes, int offset, int length)
          Writes a section in the array of bytes to the store at the given location.
 void Store.put(int location, java.nio.ByteBuffer buffer)
          Writes a ByteBuffer to the store at the given location.
 

Uses of StoreIOException in org.magnos.data.store
 

Methods in org.magnos.data.store that throw StoreIOException
 void AbstractStore.close()
          Closes this store if not closed already.
 StoreAccess AbstractStore.create(StoreAccess initialAccess, int initialCapacity)
          Creates the store by opening it with the given access and setting the initial capacity.
 void AbstractStore.flush()
          Explicitly writes the data to the store.
 void AbstractStore.load()
          Explicitly loads the data from the store into memory.
 StoreAccess AbstractStore.open(StoreAccess initialAccess)
          Explicitly opens this store for reading and writing.