Uses of Interface
org.apache.tapestry5.http.services.Dispatcher
-
Packages that use Dispatcher Package Description org.apache.tapestry5.http.modules org.apache.tapestry5.internal.services [INTERNAL USE ONLY] internal service classes; API subject to changeorg.apache.tapestry5.internal.services.javascript [INTERNAL USE ONLY] JavaScript support implementations; API subject to changeorg.apache.tapestry5.modules -
-
Uses of Dispatcher in org.apache.tapestry5.http.modules
Methods in org.apache.tapestry5.http.modules that return Dispatcher Modifier and Type Method Description Dispatcher
TapestryHttpModule. buildMasterDispatcher(List<Dispatcher> configuration, ChainBuilder chainBuilder)
Ordered contributions to the MasterDispatcher service allow different URL matching strategies to occur.Methods in org.apache.tapestry5.http.modules with parameters of type Dispatcher Modifier and Type Method Description RequestHandler
TapestryHttpModule. buildRequestHandler(org.slf4j.Logger logger, List<RequestFilter> configuration, Dispatcher masterDispatcher)
Method parameters in org.apache.tapestry5.http.modules with type arguments of type Dispatcher Modifier and Type Method Description Dispatcher
TapestryHttpModule. buildMasterDispatcher(List<Dispatcher> configuration, ChainBuilder chainBuilder)
Ordered contributions to the MasterDispatcher service allow different URL matching strategies to occur. -
Uses of Dispatcher in org.apache.tapestry5.internal.services
Classes in org.apache.tapestry5.internal.services that implement Dispatcher Modifier and Type Class Description class
AssetDispatcher
Recognizes requests where the path begins with "/asset/" (actually, as defined by theSymbolConstants.ASSET_PATH_PREFIX
symbol), and delivers the content therein as a bytestream.class
ComponentEventDispatcher
Processes component action events sent as requests from the client.class
PageRenderDispatcher
Dispatches incoming requests for render requests.class
RootPathDispatcher
Recognizes a request for the application root (i.e., "/") and handles this the same as a render request for the "Start" page. -
Uses of Dispatcher in org.apache.tapestry5.internal.services.javascript
Classes in org.apache.tapestry5.internal.services.javascript that implement Dispatcher Modifier and Type Class Description class
ModuleDispatcher
Handler contributed toAssetDispatcher
with key "modules". -
Uses of Dispatcher in org.apache.tapestry5.modules
Methods in org.apache.tapestry5.modules with parameters of type Dispatcher Modifier and Type Method Description static void
AssetsModule. setupAssetDispatch(OrderedConfiguration<Dispatcher> configuration, Dispatcher assetDispatcher)
Method parameters in org.apache.tapestry5.modules with type arguments of type Dispatcher Modifier and Type Method Description static void
TapestryModule. contributeMasterDispatcher(OrderedConfiguration<Dispatcher> configuration)
The MasterDispatcher is a chain-of-command of individual Dispatchers, each handling (like a servlet) a particular kind of incoming request.static void
AssetsModule. setupAssetDispatch(OrderedConfiguration<Dispatcher> configuration, Dispatcher assetDispatcher)
static void
JavaScriptModule. setupModuleDispatchers(OrderedConfiguration<Dispatcher> configuration, ModuleManager moduleManager, OperationTracker tracker, ResourceStreamer resourceStreamer, PathConstructor pathConstructor, JavaScriptStackSource javaScriptStackSource, JavaScriptStackPathConstructor javaScriptStackPathConstructor, LocalizationSetter localizationSetter, String modulePathPrefix, String assetPathPrefix)
-