Buckets:

imerfanrajabee's picture
download
raw
484 Bytes
/**
* Abstract class for representing pipelines.
*
* @private
* @abstract
*/
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;
}
}
export default Pipeline;

Xet Storage Details

Size:
484 Bytes
·
Xet hash:
495f8aed807e4f0426b5e90b78e90bd89e8528cf9b4c7380a7473b2fb0cb44a4

Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.