- IAppConfig - Interface in org.spincast.quickstart.config
-
Application's custom configurations.
- IAppController - Interface in org.spincast.quickstart.controller
-
An application controller.
- IAppHandler - Interface in org.spincast.quickstart.exchange
-
The only purpose of this interface is to make it
easier to declare an handler as "IAppHandler"
instead of "IHandler<IAppRequestContext>".
- IAppRequestContext - Interface in org.spincast.quickstart.exchange
-
Custom type which allows our application to
extend the default request context and add custom methods
and add-ons provided by plugins.
- IAppRouter - Interface in org.spincast.quickstart.exchange
-
The only purpose of this interface is to make it
easier to inject the application specific router by using
"IAppRouter" instead of "IRouter<IAppRequestContext, IAppWebsocketContext>".
- IAppWebsocketContext - Interface in org.spincast.quickstart.exchange
-
Custom type which allows our application to
extend the default Websocket context and add custom methods
and add-ons provided by plugins.
- indexPage(IAppRequestContext) - Method in class org.spincast.quickstart.controller.AppController
-
- indexPage(IAppRequestContext) - Method in interface org.spincast.quickstart.controller.IAppController
-
Route handler for the "/" index page.