Cleanup Part 2: Electric Boogaloo (Reloaded) (#594)

* Cleanup Part 2: Electric Boogaloo (Reloaded)

* Moar cleanup

* Tweak NOT_A_PERMISSION error
This commit is contained in:
Schuyler Cebulskie
2016-09-04 05:08:09 -04:00
committed by Amish Shah
parent 5a9c42061f
commit 0b908f5bce
95 changed files with 946 additions and 1526 deletions

View File

@@ -3,6 +3,9 @@
* @private
*/
class RequestHandler {
/**
* @param {RESTManager} restManager The REST manager to use
*/
constructor(restManager) {
/**
* The RESTManager that instantiated this RequestHandler
@@ -12,7 +15,7 @@ class RequestHandler {
/**
* A list of requests that have yet to be processed.
* @type {Array<APIRequest>}
* @type {APIRequest[]}
*/
this.queue = [];
}
@@ -31,7 +34,7 @@ class RequestHandler {
/**
* Push a new API request into this bucket
* @param {APIRequest} request the new request to push into the queue
* @param {APIRequest} request The new request to push into the queue
*/
push(request) {
this.queue.push(request);