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 = new 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
    @HotSpotIntrinsicCandidate() @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. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
    Annotations
    @HotSpotIntrinsicCandidate()
  12. def goTo(state: HierarchyRoot, replaceCurrent: Boolean = false): Unit

    Permalink

    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

    Permalink
    Attributes
    protected
  14. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
    Annotations
    @HotSpotIntrinsicCandidate()
  15. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  16. def logger: CrossLogger

    Permalink
    Attributes
    protected
    Definition Classes
    CrossLogging
  17. def matchState(state: HierarchyRoot): Url

    Permalink

    returns

    URL matched to the provided state.

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate()
  20. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate()
  21. 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.

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

  23. def redirectTo(url: String): Unit

    Permalink

    Redirects to selected URL.

  24. def reload(): Unit

    Permalink
  25. 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.

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  28. final def wait(arg0: Long, arg1: Int): Unit

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  30. final def wait(): Unit

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

Deprecated Value Members

  1. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @Deprecated @deprecated @throws( classOf[java.lang.Throwable] )
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

Inherited from CrossLogging

Inherited from AnyRef

Inherited from Any

Ungrouped