| Package | Description |
|---|---|
| xapi.collect.api | |
| xapi.collect.impl |
| Modifier and Type | Method and Description |
|---|---|
Fifo<E> |
Fifo.give(E item)
Analagous to add(), however, we do not use the standard naming convention,
to avoid interface clashes with adapter types in collection libraries
that may wish to override our Fifo with their own type.
|
Fifo<E> |
Fifo.giveAll(E... elements)
Analagous to addAll(), however, we avoid the standard naming convention,
so we can provide a fluent, strongly typed api.
|
Fifo<E> |
Fifo.giveAll(Iterable<E> elements)
Analagous to addAll(), however, we avoid the standard naming convention,
so we can provide a fluent, strongly typed api.
|
| Modifier and Type | Class and Description |
|---|---|
class |
SimpleFifo<E>
A simple, fast, threadsafe, one-way, single-linked list.
|
| Modifier and Type | Method and Description |
|---|---|
Fifo<E> |
SimpleFifo.give(E item) |
Fifo<E> |
SimpleFifo.giveAll(E... elements) |
Fifo<E> |
SimpleFifo.giveAll(Iterable<E> elements) |
Copyright © December 07, 2012–2015 The Internet Party. All rights reserved.