| Package | Description |
|---|---|
| xapi.collect.api | |
| xapi.collect.impl | |
| xapi.log.api | |
| xapi.log.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) |
| Modifier and Type | Method and Description |
|---|---|
Fifo<Object> |
LogService.newFifo() |
| Modifier and Type | Method and Description |
|---|---|
void |
LogService.doLog(LogLevel level,
Fifo<Object> o) |
| Modifier and Type | Method and Description |
|---|---|
Fifo<Object> |
AbstractLog.newFifo() |
| Modifier and Type | Method and Description |
|---|---|
void |
JreLog.doLog(LogLevel level,
Fifo<Object> array) |
Copyright © 2012-2013 The Internet Party. All Rights Reserved.