PHP 7.4.33
Preview: removable.ts Size: 851 B
/var/www/gtechmarathon2026.bitkit.dk/httpdocs/node_modules/@tanstack/query-core/src/removable.ts
import { isServer, isValidTimeout } from './utils'

export abstract class Removable {
  gcTime!: number
  #gcTimeout?: ReturnType<typeof setTimeout>

  destroy(): void {
    this.clearGcTimeout()
  }

  protected scheduleGc(): void {
    this.clearGcTimeout()

    if (isValidTimeout(this.gcTime)) {
      this.#gcTimeout = setTimeout(() => {
        this.optionalRemove()
      }, this.gcTime)
    }
  }

  protected updateGcTime(newGcTime: number | undefined): void {
    // Default to 5 minutes (Infinity for server-side) if no gcTime is set
    this.gcTime = Math.max(
      this.gcTime || 0,
      newGcTime ?? (isServer ? Infinity : 5 * 60 * 1000),
    )
  }

  protected clearGcTimeout() {
    if (this.#gcTimeout) {
      clearTimeout(this.#gcTimeout)
      this.#gcTimeout = undefined
    }
  }

  protected abstract optionalRemove(): void
}

Directory Contents

Dirs: 0 × Files: 22
Name Size Perms Modified Actions
2.06 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
8.08 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
1.52 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
5.27 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
4.69 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
8.98 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
6.86 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
4.76 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
2.36 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
1.77 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
7.54 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
18.48 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
5.55 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
16.36 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
22.87 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
851 B lrw-r--r-- 2025-07-14 06:33:17
Edit Download
5.50 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
2.71 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
557 B lrw-r--r-- 2025-07-14 06:33:17
Edit Download
2.87 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
38.76 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
11.10 KB lrw-r--r-- 2025-07-14 06:33:17
Edit Download
If ZipArchive is unavailable, a .tar will be created (no compression).