object RouteCmd
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- RouteCmd
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Type Members
- final case class Log(msg: () ⇒ String) extends RouteCmd[Unit] with Product with Serializable
-
final
case class
PushState(url: AbsUrl) extends RouteCmd[Unit] with Product with Serializable
Pushes the given data onto the session history stack with the specified title and, if provided, URL.
-
final
case class
ReplaceState(url: AbsUrl) extends RouteCmd[Unit] with Product with Serializable
Updates the most recent entry on the history stack to have the specified data, title, and, if provided, URL.
-
final
case class
Return[A](a: A) extends RouteCmd[A] with Product with Serializable
Return an arbitrary value.
- final case class Sequence[A](init: Vector[RouteCmd[_]], last: RouteCmd[A]) extends RouteCmd[A] with Product with Serializable
-
final
case class
SetWindowLocation(url: AbsUrl) extends RouteCmd[Unit] with Product with Serializable
Sets
window.location.hrefto a provided URL.
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )
-
object
BroadcastSync extends RouteCmd[Unit] with Product with Serializable
Broadcast a message to Router component telling it to re-synchronise itself with the current window URL, recalculating the route and content to render.