-
- All Known Subinterfaces:
GenericStreamlet<I,O>
,RecordOutlet
,Streamlet<I,O>
- All Known Implementing Classes:
AbstractRecordOutlet
,AbstractRecordStreamlet
,AbstractStreamlet
,DownlinkRecord
,DownlinkStreamlet
,ListDownlinkRecord
,MapDownlinkRecord
,RecordModel
,RecordScope
,RecordStreamlet
,ValueDownlinkRecord
public interface StreamletScope<O>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Outlet<O>
outlet(String key)
Returns anOutlet
that updates when the specifiedkey
updates.StreamletContext
streamletContext()
Returns the environment in which thisStreamletScope
operates.StreamletScope<? extends O>
streamletScope()
Returns the lexically scoped parent of thisStreamletScope
.
-
-
-
Method Detail
-
streamletScope
StreamletScope<? extends O> streamletScope()
Returns the lexically scoped parent of thisStreamletScope
. Returnsnull
if thisStreamletScope
has no lexical parent.
-
streamletContext
StreamletContext streamletContext()
Returns the environment in which thisStreamletScope
operates.
-
-