- java.lang.Object
-
- swim.streamlet.AbstractInlet<I>
-
- swim.streamlet.OutletInlet<I>
-
- All Implemented Interfaces:
Inlet<I>
public class OutletInlet<I> extends AbstractInlet<I>
AnInletthat invalidates a parameterizedOutletwhenever theInletis invalidated, and that updates the parameterizedOutletwhenever theInletupdates.
-
-
Field Summary
-
Fields inherited from class swim.streamlet.AbstractInlet
input, version
-
-
Constructor Summary
Constructors Constructor Description OutletInlet(Outlet<?> outlet)
-
Method Summary
Modifier and Type Method Description protected voidonInvalidateOutput()protected voidonReconcileOutput(int version)Outlet<?>outlet()-
Methods inherited from class swim.streamlet.AbstractInlet
bindInput, didInvalidateOutput, didReconcileOutput, disconnectInputs, disconnectOutputs, input, invalidateOutput, reconcileOutput, unbindInput, willInvalidateOutput, willReconcileOutput
-
-
-
-
Field Detail
-
outlet
protected final Outlet<?> outlet
-
-
Constructor Detail
-
OutletInlet
public OutletInlet(Outlet<?> outlet)
-
-
Method Detail
-
outlet
public Outlet<?> outlet()
-
onInvalidateOutput
protected void onInvalidateOutput()
- Overrides:
onInvalidateOutputin classAbstractInlet<I>
-
onReconcileOutput
protected void onReconcileOutput(int version)
- Overrides:
onReconcileOutputin classAbstractInlet<I>
-
-