Uses of Interface
anthill.storage.Storage

Packages that use Storage
anthill This package contains the main interfaces needed by ant implementors; in particular, it contains the Ant interface, which is the agent interface to be implemented. 
anthill.nest This package contains the main interfaces needed by nest implementors. 
anthill.nestor This package is a prototype implementation of package anthill.nest to be used during Anthill simulations.  
anthill.storage   
anthill.storage.impl   
gnutant This package contains a simple ant implementation. 
 

Uses of Storage in anthill
 

Methods in anthill that return Storage
 Storage AntView.getStorage(java.lang.String name)
          Return a storage object identified by the given name.
 

Uses of Storage in anthill.nest
 

Methods in anthill.nest that return Storage
 Storage Nest.getStorage(java.lang.String name)
          Obtains a storage reference from the nest.
 

Uses of Storage in anthill.nestor
 

Methods in anthill.nestor that return Storage
 Storage LocalAntView.getStorage(java.lang.String name)
          Return a storage object identified by the given name.
 Storage LocalNest.getStorage(java.lang.String name)
          Return a storage object identified by the given name.
 

Uses of Storage in anthill.storage
 

Subinterfaces of Storage in anthill.storage
 interface GenericStorage
          The GenericStorage represents a generic storage which enforce a simple policy based on a maximum capacity.
 interface QueryStorage
          Implementation of an LRU based query storage.
 

Uses of Storage in anthill.storage.impl
 

Classes in anthill.storage.impl that implement Storage
 class LRUKeyStorage
          Implementation of an LRU based key storage.
 class LRUQueryStorage
          Implementation of an LRU based query storage.
 class MemoryStorage
          The MemoryStorage is a simple implementation of the generic storage which keeps resources in memory.
 

Uses of Storage in gnutant
 

Classes in gnutant that implement Storage
 class UrlStorage
          Implementation of an Least Recently Used (LRU) based URL storage.