- java.lang.Object
-
- swim.streamlet.AbstractInlet<I>
-
- swim.streamlet.OutletInlet<I>
-
- All Implemented Interfaces:
Inlet<I>
public class OutletInlet<I> extends AbstractInlet<I>
AnInlet
that decoheres a parameterizedOutlet
whenever theInlet
decoheres, and that recoheres the parameterizedOutlet
whenever theInlet
recoheres.
-
-
Field Summary
Fields Modifier and Type Field Description protected Outlet<?>
outlet
-
Fields inherited from class swim.streamlet.AbstractInlet
input, version
-
-
Constructor Summary
Constructors Constructor Description OutletInlet(Outlet<?> outlet)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected void
onDecohereOutput()
protected void
onRecohereOutput(int version)
Outlet<?>
outlet()
-
Methods inherited from class swim.streamlet.AbstractInlet
bindInput, decohereOutput, didDecohereOutput, didRecohereOutput, disconnectInputs, disconnectOutputs, input, recohereOutput, unbindInput, willDecohereOutput, willRecohereOutput
-
-
-
-
Field Detail
-
outlet
protected final Outlet<?> outlet
-
-
Constructor Detail
-
OutletInlet
public OutletInlet(Outlet<?> outlet)
-
-
Method Detail
-
outlet
public Outlet<?> outlet()
-
onDecohereOutput
protected void onDecohereOutput()
- Overrides:
onDecohereOutput
in classAbstractInlet<I>
-
onRecohereOutput
protected void onRecohereOutput(int version)
- Overrides:
onRecohereOutput
in classAbstractInlet<I>
-
-