Uses of Class
gr.uoa.di.madgik.grs.record.Record

Packages that use Record
gr.uoa.di.madgik.grs.buffer   
gr.uoa.di.madgik.grs.reader   
gr.uoa.di.madgik.grs.reader.decorators   
gr.uoa.di.madgik.grs.reader.decorators.keepalive   
gr.uoa.di.madgik.grs.record   
gr.uoa.di.madgik.grs.record.field   
gr.uoa.di.madgik.grs.store.buffer   
gr.uoa.di.madgik.grs.store.buffer.multiplex   
gr.uoa.di.madgik.grs.store.record   
gr.uoa.di.madgik.grs.writer   
 

Uses of Record in gr.uoa.di.madgik.grs.buffer
 

Methods in gr.uoa.di.madgik.grs.buffer that return Record
 Record QueueBuffer.get()
          Attempts to retrieve a Record from the IBuffer.
 Record IBuffer.get()
          Attempts to retrieve a Record from the IBuffer.
 Record QueueBuffer.locate(long recordIndex)
          Attempts to locate the Record with the provided id in the underlying IBuffer structures.
 Record IBuffer.locate(long recordIndex)
          Attempts to locate the Record with the provided id in the underlying IBuffer structures.
 

Methods in gr.uoa.di.madgik.grs.buffer with parameters of type Record
 boolean QueueBuffer.put(Record record)
          Attempts to place a Record to the IBuffer.
 boolean IBuffer.put(Record record)
          Attempts to place a Record to the IBuffer.
 

Uses of Record in gr.uoa.di.madgik.grs.reader
 

Classes in gr.uoa.di.madgik.grs.reader with type parameters of type Record
 class ForwardReader<T extends Record>
          The ForwardReader class provides access over an authored IBuffer in a forward only fashion.
 class ForwardReaderIterator<T extends Record>
          An iterator implementing class that can be used to iterate over the Records accessible through a ForwardReader instance
 interface IRecordReader<T extends Record>
           
 class RandomReader<T extends Record>
          The RandomReader class provides access over an authored IBuffer in a random access fashion.
 class RandomReaderIterator<T extends Record>
          A list iterator implementing class that can be used to iterate over the Records accessible through a RandomReader instance
 

Uses of Record in gr.uoa.di.madgik.grs.reader.decorators
 

Classes in gr.uoa.di.madgik.grs.reader.decorators with type parameters of type Record
 class RecordReaderDelegate<T extends Record>
          Class delegating all operations to the underlying IRecordReader.
 

Uses of Record in gr.uoa.di.madgik.grs.reader.decorators.keepalive
 

Classes in gr.uoa.di.madgik.grs.reader.decorators.keepalive with type parameters of type Record
 class KeepAliveReader<T extends Record>
          A KeepAliveReader adds keep-alive functionality to a IRecordReader.
 

Uses of Record in gr.uoa.di.madgik.grs.record
 

Subclasses of Record in gr.uoa.di.madgik.grs.record
 class GenericRecord
          This Record extending class acts as a generic placeholder for records.
 class GRS2ExceptionWrapper
           
 

Uses of Record in gr.uoa.di.madgik.grs.record.field
 

Fields in gr.uoa.di.madgik.grs.record.field declared as Record
protected  Record Field.record
          The Record this field is bound to
 

Methods in gr.uoa.di.madgik.grs.record.field with parameters of type Record
 void Field.bind(Record record)
          Binds the Field to a specific Record that hsots it
 void Field.prebind(Record record)
          Pre-binds the Field to the provided Record
 

Uses of Record in gr.uoa.di.madgik.grs.store.buffer
 

Methods in gr.uoa.di.madgik.grs.store.buffer that return types with arguments of type Record
 ForwardReader<Record> BufferStoreEntry.getReader()
          Retrieves the reader used to iterate over the Records of the incoming locator
 

Uses of Record in gr.uoa.di.madgik.grs.store.buffer.multiplex
 

Method parameters in gr.uoa.di.madgik.grs.store.buffer.multiplex with type arguments of type Record
 void IDemultiplex.setWriter(RecordWriter<Record> writer)
          Sets the RecordWriter that will receive the restored Records
 void FirstAvailableDemultiplex.setWriter(RecordWriter<Record> writer)
          Sets the RecordWriter that will receive the restored Records
 void FifoDemultiplex.setWriter(RecordWriter<Record> writer)
          Sets the RecordWriter that will receive the restored Records
 

Uses of Record in gr.uoa.di.madgik.grs.store.record
 

Methods in gr.uoa.di.madgik.grs.store.record that return Record
 Record FileRecordStore.retrieve(long recordID, boolean reset)
          Retrieves a previously stored Record based on its id
 Record CacheRecordStore.retrieve(long recordID, boolean reset)
           
 Record IRecordStore.retrieve(long recordID, boolean reset)
          Retrieves a previously stored Record based on its id
 Record FileRecordStore.retrieveByIndex(long recordIndex, boolean reset)
          Retrieve a previously stored Record based on the index by which it was stored.
 Record CacheRecordStore.retrieveByIndex(long recordIndex, boolean reset)
           
 Record IRecordStore.retrieveByIndex(long recordIndex, boolean reset)
          Retrieve a previously stored Record based on the index by which it was stored.
 

Methods in gr.uoa.di.madgik.grs.store.record with parameters of type Record
 void FileRecordStore.persist(Record record)
          Persists the provided Record
 void CacheRecordStore.persist(Record record)
           
 void IRecordStore.persist(Record record)
          Persists the provided Record
 

Uses of Record in gr.uoa.di.madgik.grs.writer
 

Classes in gr.uoa.di.madgik.grs.writer with type parameters of type Record
 interface IRecordWriter<T extends Record>
           
 class RecordWriter<T extends Record>
           
 



Copyright © 2012. All Rights Reserved.