Buckets:
| /** | |
| * Abstract base class of a timestamp query pool. | |
| * | |
| * @abstract | |
| */ | |
| class TimestampQueryPool { | |
| /** | |
| * Creates a new timestamp query pool. | |
| * | |
| * @param {number} [maxQueries=256] - Maximum number of queries this pool can hold. | |
| */ | |
| constructor( maxQueries = 256 ) { | |
| /** | |
| * Whether to track timestamps or not. | |
| * | |
| * @type {boolean} | |
| * @default true | |
| */ | |
| this.trackTimestamp = true; | |
| /** | |
| * Maximum number of queries this pool can hold. | |
| * | |
| * @type {number} | |
| * @default 256 | |
| */ | |
| this.maxQueries = maxQueries; | |
| /** | |
| * How many queries allocated so far. | |
| * | |
| * @type {number} | |
| * @default 0 | |
| */ | |
| this.currentQueryIndex = 0; | |
| /** | |
| * Tracks offsets for different contexts. | |
| * | |
| * @type {Map<string, number>} | |
| */ | |
| this.queryOffsets = new Map(); | |
| /** | |
| * Whether the pool has been disposed or not. | |
| * | |
| * @type {boolean} | |
| * @default false | |
| */ | |
| this.isDisposed = false; | |
| /** | |
| * TODO | |
| * | |
| * @type {number} | |
| * @default 0 | |
| */ | |
| this.lastValue = 0; | |
| /** | |
| * TODO | |
| * | |
| * @type {boolean} | |
| * @default false | |
| */ | |
| this.pendingResolve = false; | |
| } | |
| /** | |
| * Allocate queries for a specific renderContext. | |
| * | |
| * @abstract | |
| * @param {Object} renderContext - The render context to allocate queries for. | |
| * @returns {?number} | |
| */ | |
| allocateQueriesForContext( /* renderContext */ ) {} | |
| /** | |
| * Resolve all timestamps and return data (or process them). | |
| * | |
| * @abstract | |
| * @async | |
| * @returns {Promise<number>|number} The resolved timestamp value. | |
| */ | |
| async resolveQueriesAsync() {} | |
| /** | |
| * Dispose of the query pool. | |
| * | |
| * @abstract | |
| */ | |
| dispose() {} | |
| } | |
| export default TimestampQueryPool; | |
Xet Storage Details
- Size:
- 1.67 kB
- Xet hash:
- 25708585939919857caa3991f0720a19b16545d567359119ee739644c36b91dc
·
Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.