- java.lang.Object
-
- swim.streamlet.AbstractInlet<I>
-
- swim.streamlet.OutletInlet<I>
-
- All Implemented Interfaces:
Inlet<I>
public class OutletInlet<I> extends AbstractInlet<I>
AnInletthat decoheres a parameterizedOutletwhenever theInletdecoheres, and that recoheres the parameterizedOutletwhenever theInletrecoheres.
-
-
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 voidonDecohereOutput()protected voidonRecohereOutput(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:
onDecohereOutputin classAbstractInlet<I>
-
onRecohereOutput
protected void onRecohereOutput(int version)
- Overrides:
onRecohereOutputin classAbstractInlet<I>
-
-