Source: _events.js


/** 
 * @module _events
 * @description to be used as Constants for event xmitting from Loader.
 * These are all numbers to ease comparisons vs string values.
 */

/** 
 * @constant _events:ON_LOAD
 * @description gets fired when a file loads
 */

/** 
 * @constant _events:ON_CACHE
 * @description gets fired when a file is cached
 */

/** 
 * @constant _events:ON_ERROR
 * @description gets fired when there is an error in trying to load a file.
 */

/** 
 * @constant _events:ON_REQUEST
 * @description gets fired when a file is requested
 */

module.exports = { 
	ON_LOAD:83400,
	ON_CACHE:83401,
	ON_ERROR:834402,
	ON_REQUEST:834403
}