Uses of Interface
org.egothor.core.SequenceWithClose

Packages that use SequenceWithClose
org.egothor.core This package concentrates the core data objects and interfaces. 
org.egothor.core.memory This package contains an implementation of barrels in memory. 
org.egothor.dockyard   
org.egothor.listener   
org.egothor.merger This package defines a machinery that merges many BarrelReaders. 
org.egothor.repository   
org.egothor.robot.index   
org.egothor.slotter This package is responsible for management of arrays of DynStruct objects. 
org.egothor.store This package contains an implementation of barrels on a hard disk. 
org.egothor.util   
 

Uses of SequenceWithClose in org.egothor.core
 

Subinterfaces of SequenceWithClose in org.egothor.core
 interface IMetaReader
          This interface declares, that an object can act as a sequence with a close operation and it also offers a method that returns uid of the item that is read currently.
 

Methods in org.egothor.core that return SequenceWithClose
 SequenceWithClose<DocumentData> BarrelReader.getDocuments()
          Returns an enumeration of all active documents.
 SequenceWithClose<IListReader> BarrelReader.getILists()
          Returns an enumeration of all inverted lists.
 

Uses of SequenceWithClose in org.egothor.core.memory
 

Methods in org.egothor.core.memory that return SequenceWithClose
 SequenceWithClose<DocumentData> Document.getDocuments()
          Return an Enumeration of the documents.
 SequenceWithClose<DocumentData> MemoryBarrel.getDocuments()
          Return the documents making up this Barrel.
 SequenceWithClose<IListReader> Document.getILists()
          Return all inverted lists in A-Z order of terms.
 SequenceWithClose<IListReader> MemoryBarrel.getILists()
          Return the inverted lists in this Barrel.
 

Uses of SequenceWithClose in org.egothor.dockyard
 

Methods in org.egothor.dockyard that return SequenceWithClose
 SequenceWithClose<DocumentData> StreamReader.getDocuments()
           
 SequenceWithClose<IListReader> StreamReader.getILists()
           
 

Uses of SequenceWithClose in org.egothor.listener
 

Methods in org.egothor.listener that return SequenceWithClose
 SequenceWithClose<GlobalPosition> ListenSlotMap.readGSL()
           
 SequenceWithClose<GlobalPosition> TransactionListener.readGSL()
           
 

Uses of SequenceWithClose in org.egothor.merger
 

Classes in org.egothor.merger that implement SequenceWithClose
 class ConcatSeq<T>
          The ConcatSeq object reads an input set of sequences one by one and this way it produces this final sequence.
 

Methods in org.egothor.merger that return SequenceWithClose
 SequenceWithClose<DocumentData> Merge.getDocuments()
          Return an enumeration of DocumentData objects.
 SequenceWithClose<IListReader> Merge.getILists()
          Return an enumeration of IListReaders.
 

Uses of SequenceWithClose in org.egothor.repository
 

Subinterfaces of SequenceWithClose in org.egothor.repository
static interface DataRepository.TupleSequence
           
 

Uses of SequenceWithClose in org.egothor.robot.index
 

Classes in org.egothor.robot.index that implement SequenceWithClose
 class DocumentsFastReader
          DocumentsFastReader.java Created on August 15, 2005, 2:23 AM
 class TermsFastReader
          TermsFastReader.java Created on August 15, 2005, 2:13 AM
 

Methods in org.egothor.robot.index that return SequenceWithClose
 SequenceWithClose<DocumentData> ThickFastIn.getDocuments()
          Return an enumeration containing stored metadata of documents.
 SequenceWithClose<IListReader> ThickFastIn.getILists()
          Returns an enumeration of inverted lists.
 

Uses of SequenceWithClose in org.egothor.slotter
 

Methods in org.egothor.slotter that return SequenceWithClose
 SequenceWithClose<GlobalPosition> TransactionLog.getLog()
           
 

Constructors in org.egothor.slotter with parameters of type SequenceWithClose
TransactionLog(int id, SequenceWithClose<GlobalPosition> log)
           
 

Uses of SequenceWithClose in org.egothor.store
 

Methods in org.egothor.store that return SequenceWithClose
 SequenceWithClose<DocumentData> ThickBarrelIn.getDocuments()
          Return an enumeration containing stored metadata of documents.
 SequenceWithClose<IListReader> ThickBarrelIn.getILists()
          Returns an enumeration of inverted lists.
 SequenceWithClose<IListMetadataRead> Terms.getReader()
          Open this data structure for sequential read access.
 

Uses of SequenceWithClose in org.egothor.util
 

Classes in org.egothor.util that implement SequenceWithClose
 class MergeSequence<T>
           
 

Methods in org.egothor.util with parameters of type SequenceWithClose
 void MergeSequence.add(SequenceWithClose<T> list)
          The sequence mustn't be empty.