-
- All Superinterfaces:
Lane
,Log
,Observable<Object>
,WarpLane
- All Known Implementing Classes:
SupplyLaneView
public interface SupplyLane<V> extends WarpLane
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SupplyLane<V>
didCommand(DidCommand didCommand)
SupplyLane<V>
didEnter(DidEnter didEnter)
SupplyLane<V>
didLeave(DidLeave didLeave)
SupplyLane<V>
didUplink(DidUplink didUplink)
SupplyLane<V>
observe(Object observer)
void
push(V value)
SupplyLane<V>
unobserve(Object observer)
<V2> SupplyLane<V2>
valueClass(Class<V2> valueClass)
Form<V>
valueForm()
<V2> SupplyLane<V2>
valueForm(Form<V2> valueForm)
SupplyLane<V>
willCommand(WillCommand willCommand)
SupplyLane<V>
willEnter(WillEnter willEnter)
SupplyLane<V>
willLeave(WillLeave willLeave)
SupplyLane<V>
willUplink(WillUplink willUplink)
-
-
-
Method Detail
-
valueForm
<V2> SupplyLane<V2> valueForm(Form<V2> valueForm)
-
valueClass
<V2> SupplyLane<V2> valueClass(Class<V2> valueClass)
-
observe
SupplyLane<V> observe(Object observer)
-
unobserve
SupplyLane<V> unobserve(Object observer)
-
willCommand
SupplyLane<V> willCommand(WillCommand willCommand)
- Specified by:
willCommand
in interfaceWarpLane
-
didCommand
SupplyLane<V> didCommand(DidCommand didCommand)
- Specified by:
didCommand
in interfaceWarpLane
-
willUplink
SupplyLane<V> willUplink(WillUplink willUplink)
- Specified by:
willUplink
in interfaceWarpLane
-
didUplink
SupplyLane<V> didUplink(DidUplink didUplink)
-
willEnter
SupplyLane<V> willEnter(WillEnter willEnter)
-
didEnter
SupplyLane<V> didEnter(DidEnter didEnter)
-
willLeave
SupplyLane<V> willLeave(WillLeave willLeave)
-
didLeave
SupplyLane<V> didLeave(DidLeave didLeave)
-
push
void push(V value)
-
-