Buffer interface.See: Description
| Class | Description |
|---|---|
| AbstractBufferDecorator<E> |
Decorates another
Buffer to provide additional behaviour. |
| BlockingBuffer<E> |
Decorates another
Buffer to make BlockingBuffer.get() and
BlockingBuffer.remove() block when the Buffer is empty. |
| BoundedBuffer<E> |
Decorates another
Buffer to ensure a fixed maximum size. |
| BoundedFifoBuffer<E> |
The
BoundedFifoBuffer is a very efficient implementation of a
Buffer with a fixed size. |
| CircularFifoBuffer<E> |
CircularFifoBuffer is a first in first out buffer with a fixed size that
replaces its oldest element if full.
|
| PredicatedBuffer<E> |
Decorates another
Buffer to validate that additions
match a specified predicate. |
| PriorityBuffer<E> |
Binary heap implementation of
Buffer that provides for
removal based on Comparator ordering. |
| SynchronizedBuffer<E> |
Decorates another
Buffer to synchronize its behaviour
for a multi-threaded environment. |
| TransformedBuffer<E> |
Decorates another
Buffer to transform objects that are added. |
| UnboundedFifoBuffer<E> |
UnboundedFifoBuffer is a very efficient implementation of
Buffer that can grow to any size. |
| UnmodifiableBuffer<E> |
Decorates another
Buffer to ensure it can't be altered. |
Buffer interface.
The following implementations are provided in the package:
The following decorators are provided in the package:
Copyright © 2001-2013 The Apache Software Foundation. All Rights Reserved.