Package | Description |
---|---|
teetime.framework |
Contains the implementation of the TeeTime framework.
|
teetime.framework.pipe |
Contains all pipes related classes, such as factories and pre-defined pipes.
|
teetime.framework.pipe.strategy |
Modifier and Type | Class and Description |
---|---|
class |
AbstractPipe<T>
Represents an abstract implementation of an
IPipe . |
class |
AbstractSynchedPipe<T>
Deprecated.
since 3.0. Use
AbstractSynchedPipe instead. |
class |
AbstractUnsynchedPipe<T>
Deprecated.
since 3.0. Use
AbstractUnsynchedPipe instead. |
class |
InstantiationPipe<T> |
Modifier and Type | Field and Description |
---|---|
protected IPipe<?> |
AbstractPort.pipe |
Modifier and Type | Method and Description |
---|---|
IPipe<?> |
AbstractPort.getPipe() |
Modifier and Type | Class and Description |
---|---|
class |
BoundedSynchedPipe<T> |
class |
DummyPipe
A pipe implementation used to connect unconnected output ports.
|
class |
ReflexivePipe<T>
Represents an unsynchronized pipe with a capacity of 1.
|
class |
UnboundedSynchedPipe<T> |
class |
UnsynchedPipe<T> |
Modifier and Type | Field and Description |
---|---|
static IPipe<?> |
DummyPipe.INSTANCE |
Modifier and Type | Method and Description |
---|---|
<T> IPipe<T> |
IPipeFactory.newPipe(OutputPort<? extends T> sourcePort,
InputPort<T> targetPort) |
<T> IPipe<T> |
BoundedSynchedPipeFactory.newPipe(OutputPort<? extends T> sourcePort,
InputPort<T> targetPort)
Uses a default capacity of .
|
<T> IPipe<T> |
IPipeFactory.newPipe(OutputPort<? extends T> sourcePort,
InputPort<T> targetPort,
int capacity) |
<T> IPipe<T> |
BoundedSynchedPipeFactory.newPipe(OutputPort<? extends T> sourcePort,
InputPort<T> targetPort,
int capacity) |
Modifier and Type | Method and Description |
---|---|
void |
SkipIfFullStrategy.add(IPipe<?> pipe,
Object element) |
void |
PipeElementInsertionStrategy.add(IPipe<?> pipe,
Object element)
Adds the given element to the given pipe.
|
void |
SleepIfFullStrategy.add(IPipe<?> pipe,
Object element) |
Copyright © 2015–2020. All rights reserved.