- java.lang.Object
-
- swim.streamlet.AbstractInoutlet<I,O>
-
- swim.streamlet.combinator.MapValueOperator<I,O>
-
- swim.streamlet.combinator.MapValueCombinator<I,O>
-
public class MapValueCombinator<I,O> extends MapValueOperator<I,O>
-
-
Field Summary
Fields Modifier and Type Field Description protected MapValueFunction<? super I,? extends O>
func
-
Fields inherited from class swim.streamlet.AbstractInoutlet
input, outputs, version
-
-
Constructor Summary
Constructors Constructor Description MapValueCombinator(MapValueFunction<? super I,? extends O> func)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description O
evaluate(I value)
-
Methods inherited from class swim.streamlet.combinator.MapValueOperator
get
-
Methods inherited from class swim.streamlet.AbstractInoutlet
bindInput, bindOutput, decohere, decohereInput, decohereOutput, didDecohere, didRecohere, disconnectInputs, disconnectOutputs, input, onDecohere, onRecohere, outputIterator, recohere, recohereInput, recohereOutput, unbindInput, unbindOutput, unbindOutputs, willDecohere, willRecohere
-
-
-
-
Field Detail
-
func
protected final MapValueFunction<? super I,? extends O> func
-
-
Constructor Detail
-
MapValueCombinator
public MapValueCombinator(MapValueFunction<? super I,? extends O> func)
-
-