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