Events dispatched by the active view in RouterNavigator may trigger actions, such as navigation.

Available since

1.0.0

.

See also:

Values

Push(url:String, newHistoryState:Dynamic, transition:(DisplayObject, DisplayObject) ‑> IEffectContext)

Navigate to a new item that is added to the history stack.

Available since

1.0.0

.

Replace(url:String, newHistoryState:Dynamic, transition:(DisplayObject, DisplayObject) ‑> IEffectContext)

Navigate to a new item that replaces the current item in the history stack.

Available since

1.0.0

.

GoBack(transition:(DisplayObject, DisplayObject) ‑> IEffectContext)

Navigate to the previous item on the history stack.

Available since

1.0.0

.

GoForward(transition:(DisplayObject, DisplayObject) ‑> IEffectContext)

Navigate to the next item on the history stack.

Available since

1.0.0

.

Go(n:Int, transition:(DisplayObject, DisplayObject) ‑> IEffectContext)

Navigate to back or forward by n entries in the history stack.

Available since

1.0.0

.

Listener(callback:E ‑> Void)

Call an event listener. Does not navigate to a different view.

Available since

1.0.0

.

NewAction(callback:E ‑> RouterAction)

Call a function that creates a new action. The new action will be triggered instead.

Available since

1.0.0

.