📄 Pipeline.js
¶
📊 Analysis Summary¶
Metric | Count |
---|---|
🧱 Classes | 1 |
📚 Table of Contents¶
🛠️ File Location:¶
📂 src/renderers/common/Pipeline.js
Classes¶
Pipeline
¶
Class Code
class Pipeline {
/**
* Constructs a new pipeline.
*
* @param {string} cacheKey - The pipeline's cache key.
*/
constructor( cacheKey ) {
/**
* The pipeline's cache key.
*
* @type {string}
*/
this.cacheKey = cacheKey;
/**
* How often the pipeline is currently in use.
*
* @type {number}
* @default 0
*/
this.usedTimes = 0;
}
}