| Modifier and Type | Method and Description |
|---|---|
Record |
IBuffer.get()
|
Record |
QueueBuffer.get()
|
Record |
IBuffer.locate(long recordIndex)
|
Record |
QueueBuffer.locate(long recordIndex)
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
IBuffer.put(Record record)
|
boolean |
QueueBuffer.put(Record record)
|
| Modifier and Type | Class and Description |
|---|---|
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 |
| Modifier and Type | Class and Description |
|---|---|
class |
RecordReaderDelegate<T extends Record>
Class delegating all operations to the underlying
IRecordReader. |
| Modifier and Type | Class and Description |
|---|---|
class |
KeepAliveReader<T extends Record>
A
KeepAliveReader adds keep-alive functionality to a IRecordReader. |
| Modifier and Type | Class and Description |
|---|---|
class |
GenericRecord
This
Record extending class acts as a generic placeholder for records. |
class |
GRS2ExceptionWrapper |
| Modifier and Type | Field and Description |
|---|---|
protected Record |
Field.record
The
Record this field is bound to |
| Modifier and Type | Method and Description |
|---|---|
void |
Field.bind(Record record)
|
void |
Field.prebind(Record record)
|
| Modifier and Type | Method and Description |
|---|---|
ForwardReader<Record> |
BufferStoreEntry.getReader()
Retrieves the reader used to iterate over the
Records of the incoming locator |
| Modifier and Type | Method and Description |
|---|---|
void |
FifoDemultiplex.setWriter(RecordWriter<Record> writer)
Sets the
RecordWriter that will receive the restored Records |
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 |
| Modifier and Type | Method and Description |
|---|---|
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. |
| Modifier and Type | Method and Description |
|---|---|
void |
FileRecordStore.persist(Record record)
Persists the provided
Record |
void |
CacheRecordStore.persist(Record record) |
void |
IRecordStore.persist(Record record)
Persists the provided
Record |
| Modifier and Type | Interface and Description |
|---|---|
interface |
IRecordWriter<T extends Record> |
class |
RecordWriter<T extends Record> |
Copyright © 2014. All Rights Reserved.