Class AcknowledgementsBuffer
- All Implemented Interfaces:
Serializable, Cloneable, ChannelDataStore
Description
AcknowledgementsBuffer is an implementation of ChannelDataStore that yields a FIFO buffered semantics for a channel. When empty, the channel blocks readers. However, its capacity is infinite (expanding to whatever is needed so far as the underlying memory system will permit). So, it never gets full and blocks a writer. See the staticinvalid reference
create
One2OneChannel etc.
The getState method returns EMPTY or NONEMPTYFULL, but never FULL.
An initial size for the buffer can be specified during construction.
This buffer will save memory by changing multiple ChannelMessage.Ack messages into AcknowledgementsBuffer.Acks.
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescription(package private) static classCompressed form of one or more acknowledgements. -
Field Summary
FieldsModifier and TypeFieldDescriptionprivate AcknowledgementsBuffer.AcksThe Acks which is currently in the buffer.private Object[]The storage for the buffered Objectsprivate intThe number of Objects stored in the InfiniteBufferprivate static final intThe default size of the bufferprivate intThe index of the first elementprivate intThe initial size of the bufferprivate intThe index of the last elementFields inherited from interface ChannelDataStore
EMPTY, FULL, NONEMPTYFULL -
Constructor Summary
ConstructorsConstructorDescriptionConstruct a new InfiniteBuffer with the default size (of 8).AcknowledgementsBuffer(int initialSize) Construct a new AcknowledgementsBuffer with the specified initial size. -
Method Summary
Modifier and TypeMethodDescriptionclone()Returns a new (and EMPTY) AcknowledgementsBuffer with the same creation parameters as this one.voidendGet()Ends an extended read on the buffer.get()Returns the oldest Object from the InfiniteBuffer and removes it.intgetState()Returns the current state of the AcknowledgementsBuffer.voidPuts a new Object into the InfiniteBuffer.voidDeletes all items in the buffer, leaving it empty.startGet()Begins an extended read on the buffer, returning the data for the extended read.
-
Field Details
-
DEFAULT_SIZE
private static final int DEFAULT_SIZEThe default size of the buffer- See Also:
-
initialSize
private int initialSizeThe initial size of the buffer -
buffer
The storage for the buffered Objects -
counter
private int counterThe number of Objects stored in the InfiniteBuffer -
firstIndex
private int firstIndexThe index of the first element -
lastIndex
private int lastIndexThe index of the last element -
acks
The Acks which is currently in the buffer.
-
-
Constructor Details
-
AcknowledgementsBuffer
AcknowledgementsBuffer()Construct a new InfiniteBuffer with the default size (of 8). -
AcknowledgementsBuffer
AcknowledgementsBuffer(int initialSize) Construct a new AcknowledgementsBuffer with the specified initial size.- Parameters:
initialSize- the number of Objects the AcknowledgementsBuffer can initially store
-
-
Method Details
-
get
Returns the oldest Object from the InfiniteBuffer and removes it.Pre-condition: getState must not currently return EMPTY.
- Specified by:
getin interfaceChannelDataStore- Returns:
- the oldest Object from the InfiniteBuffer
-
startGet
Description copied from interface:ChannelDataStoreBegins an extended read on the buffer, returning the data for the extended read.Pre-condition: getState must not currently return EMPTY.
The exact behaviour of this method depends on your buffer. When a process performs an extended rendezvous on a buffered channel, it will first call this method, then the
ChannelDataStore.endGet()method.A FIFO buffer would implement this method as returning the value from the front of the buffer and the next call would remove the value. An overflowing buffer would do the same.
However, for an overwriting buffer it is more complex. Refer to the documentation for
OverWritingBuffer.startGet()andOverWriteOldestBuffer.startGet()for details- Specified by:
startGetin interfaceChannelDataStore- Returns:
- The object to be read from the channel at the beginning of the extended rendezvous
- See Also:
-
endGet
public void endGet()Description copied from interface:ChannelDataStoreEnds an extended read on the buffer. The channels guarantee that this method will be called exactly once after eachcall. During the period betweenstartGetandstartGet, it is possible thatendGetwill be called, but notput.get- Specified by:
endGetin interfaceChannelDataStore- See Also:
-
put
Puts a new Object into the InfiniteBuffer.Implementation note: if InfiniteBuffer is full, a new internal buffer with double the capacity is constructed and the old data copied across.
- Specified by:
putin interfaceChannelDataStore- Parameters:
value- the Object to put into the InfiniteBuffer
-
getState
public int getState()Returns the current state of the AcknowledgementsBuffer.- Specified by:
getStatein interfaceChannelDataStore- Returns:
- the current state of the AcknowledgementsBuffer (EMPTY or NONEMPTYFULL)
-
clone
Returns a new (and EMPTY) AcknowledgementsBuffer with the same creation parameters as this one.Note: Only the initial size and structure of the AcknowledgementsBuffer is cloned, not any stored data.
- Specified by:
clonein interfaceChannelDataStore- Overrides:
clonein classObject- Returns:
- the cloned instance of this AcknowledgementsBuffer.
-
removeAll
public void removeAll()Description copied from interface:ChannelDataStoreDeletes all items in the buffer, leaving it empty.- Specified by:
removeAllin interfaceChannelDataStore
-