Packages

c

io.udash

Application

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. Protected

Instance Constructors

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

    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
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  6. def currentState: HierarchyRoot

    Current application routing state.

  7. def currentStateProperty: udash.ReadableProperty[HierarchyRoot]

    returns

    Property reflecting current routing state

  8. def currentUrl: Url

    returns

    the URL part representing the current frontend routing state.

  9. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  10. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  11. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  12. def goTo(state: HierarchyRoot, replaceCurrent: Boolean = false): Unit

    Changes application routing state to the provided one.

    Changes application routing state to the provided one.

    state

    New application routing state,

    replaceCurrent

    indicates whether new state should replace the current one in history

  13. def handleRoutingFailure(ex: Throwable): Unit
    Attributes
    protected
  14. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  15. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  16. def logger: CrossLogger
    Attributes
    protected
    Definition Classes
    CrossLogging
  17. def matchState(state: HierarchyRoot): Url

    returns

    URL matched to the provided state.

  18. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  19. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  20. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  21. def onRoutingFailure(listener: CallbackType): Registration

    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.

  22. def onStateChange(callback: (StateChangeEvent[HierarchyRoot]) => Unit): Registration

    Register callback for routing state change.

    Register callback for routing state change.

    callback

    Callback getting newState and oldState as arguments.

  23. def redirectTo(url: Url): Unit

    Redirects to selected URL.

  24. def reload(): Unit
  25. final def run(attachElement: Element): Unit

    Starts the application using selected element as root.

    Starts the application using selected element as root.

    attachElement

    Root element of application.

  26. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  27. def toString(): String
    Definition Classes
    AnyRef → Any
  28. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  29. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  30. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

Inherited from CrossLogging

Inherited from AnyRef

Inherited from Any

Ungrouped