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

Packages that use StoreAccessException
org.magnos.data   
 

Uses of StoreAccessException in org.magnos.data
 

Methods in org.magnos.data that throw StoreAccessException
 int Store.capacity(int newCapacity)
          Sets the stores size or capacity in bytes.
 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.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.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.