Class

io.udash

Application

Related Doc: package udash

Permalink

class Application[HierarchyRoot >: Null <: GState[HierarchyRoot]] extends CrossLogging

Root application which is used to start single instance of app.

HierarchyRoot

Should be a sealed trait which extends io.udash.core.State.

Linear Supertypes
CrossLogging, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Application
  2. CrossLogging
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Application(routingRegistry: RoutingRegistry[HierarchyRoot], viewFactoryRegistry: ViewFactoryRegistry[HierarchyRoot], urlChangeProvider: udash.UrlChangeProvider = WindowUrlFragmentChangeProvider)(implicit arg0: ClassTag[HierarchyRoot], arg1: PropertyCreator[HierarchyRoot])

    Permalink

    routingRegistry

    io.udash.routing.RoutingRegistry implementation, which will be used to match io.udash.core.Url to io.udash.core.State

    viewFactoryRegistry

    io.udash.core.ViewFactoryRegistry implementation, which will be used to match io.udash.core.State into io.udash.core.ViewFactory

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  6. def currentState: HierarchyRoot

    Permalink

    Current application routing state.

  7. def currentStateProperty: udash.ReadableProperty[HierarchyRoot]

    Permalink

    returns

    Property reflecting current routing state

  8. def currentUrl: Url

    Permalink

    returns

    the URL part representing the current frontend routing state.

  9. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  10. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  11. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  12. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  13. def goTo(state: HierarchyRoot): Unit

    Permalink

    Changes application routing state to the provided one.

    Changes application routing state to the provided one.

    state

    New application routing state,

  14. def handleRoutingFailure(ex: Throwable): Unit

    Permalink
    Attributes
    protected
  15. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  16. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  17. def logger: CrossLogger

    Permalink
    Definition Classes
    CrossLogging
  18. def matchState(state: HierarchyRoot): Url

    Permalink

    returns

    URL matched to the provided state.

  19. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  20. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  21. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  22. def onRoutingFailure(listener: CallbackType): Registration

    Permalink

    Registers callback which will be called after routing failure.

    Registers callback which will be called after routing failure.

    The callbacks are executed in order of registration. Registration operations don't preserve callbacks order. Each callback is executed once, exceptions thrown in callbacks are swallowed.

  23. def onStateChange(callback: (StateChangeEvent[HierarchyRoot]) ⇒ Unit): Registration

    Permalink

    Register callback for routing state change.

    Register callback for routing state change.

    callback

    Callback getting newState and oldState as arguments.

  24. def redirectTo(url: String): Unit

    Permalink

    Redirects to selected URL.

  25. def reload(): Unit

    Permalink
  26. final def run(attachElement: Element): Unit

    Permalink

    Starts the application using selected element as root.

    Starts the application using selected element as root.

    attachElement

    Root element of application.

  27. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  28. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  29. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  30. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  31. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from CrossLogging

Inherited from AnyRef

Inherited from Any

Ungrouped