Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions src/framework/handlers/handler.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ class ResourceHandler {
* The running app instance.
*
* @type {AppBase}
* @protected
*/
_app;

Expand All @@ -40,6 +41,15 @@ class ResourceHandler {
this.handlerType = handlerType;
}

/**
* Gets the running {@link AppBase} instance.
*
* @type {AppBase}
*/
get app() {
return this._app;
}

/**
* Sets the number of times to retry a failed request for the resource.
*
Expand Down