-
- All Known Implementing Classes:
AbstractRecordOutlet
,DownlinkRecord
,ListDownlinkRecord
,MapDownlinkRecord
,RecordModel
,RecordScope
,ValueDownlinkRecord
public interface RecordOutlet extends Outlet<Record>, MapOutlet<Value,Value,Record>, StreamletScope<Value>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Outlet<Value>
outlet(String key)
Returns anOutlet
that updates when the specifiedkey
updates.Outlet<Value>
outlet(Value key)
Returns anOutlet
that updates when the specifiedkey
updates.-
Methods inherited from interface swim.streamlet.MapOutlet
containsKey, decohereInputKey, filter, get, keyIterator, map, memoize, recohereInputKey, reduce, watch
-
Methods inherited from interface swim.streamlet.Outlet
bindOutput, decohereInput, disconnectInputs, disconnectOutputs, get, map, outputIterator, recohereInput, unbindOutput, unbindOutputs, watch
-
Methods inherited from interface swim.streamlet.StreamletScope
streamletContext, streamletScope
-
-
-
-
Method Detail
-
outlet
Outlet<Value> outlet(Value key)
Description copied from interface:MapOutlet
Returns anOutlet
that updates when the specifiedkey
updates.
-
outlet
Outlet<Value> outlet(String key)
Description copied from interface:StreamletScope
Returns anOutlet
that updates when the specifiedkey
updates.- Specified by:
outlet
in interfaceStreamletScope<Value>
-
-