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