From 46df7d2f0be1b566628f2697049f7d5f4e8ce58b Mon Sep 17 00:00:00 2001
From: "renovate[bot]"
Date: Mon, 4 Nov 2024 03:25:25 +0000
Subject: [PATCH] deploy: a0eda79708c736392ec7726c2bdc6bed7952a9d6
---
classes/Cache.html | 4 ++--
classes/Defer.html | 4 ++--
classes/FanOut.html | 4 ++--
classes/Locks.html | 6 +++---
classes/LruCache.html | 4 ++--
classes/LruMap.html | 8 ++++----
classes/LruTtlMap.html | 14 +++++++-------
classes/TimedQueue.html | 8 ++++----
classes/TimedState.html | 10 +++++-----
coverage/clover.xml | 14 +++++++-------
coverage/coverage-final.json | 4 ++--
coverage/lcov-report/Cache.ts.html | 2 +-
coverage/lcov-report/Defer.ts.html | 2 +-
coverage/lcov-report/Locks.ts.html | 2 +-
coverage/lcov-report/LruCache.ts.html | 2 +-
coverage/lcov-report/LruMap.ts.html | 2 +-
coverage/lcov-report/LruTtlMap.ts.html | 2 +-
coverage/lcov-report/TimedQueue.ts.html | 2 +-
coverage/lcov-report/TimedState.ts.html | 2 +-
coverage/lcov-report/base64.ts.html | 2 +-
coverage/lcov-report/codeMutex.ts.html | 10 +++++-----
coverage/lcov-report/concurrency.ts.html | 2 +-
.../lcov-report/concurrencyDecorator.ts.html | 2 +-
coverage/lcov-report/createRace.ts.html | 2 +-
coverage/lcov-report/fanout.ts.html | 2 +-
coverage/lcov-report/go.ts.html | 2 +-
coverage/lcov-report/hasKeys.ts.html | 2 +-
coverage/lcov-report/hash.ts.html | 2 +-
coverage/lcov-report/index.html | 2 +-
coverage/lcov-report/mutex.ts.html | 2 +-
coverage/lcov-report/normalizeEmail.ts.html | 2 +-
coverage/lcov-report/once.ts.html | 2 +-
coverage/lcov-report/tick.ts.html | 2 +-
coverage/lcov-report/timeout.ts.html | 2 +-
coverage/lcov-report/xorshift.ts.html | 2 +-
coverage/lcov.info | 18 +++++++++---------
functions/codeMutex.html | 2 +-
functions/concurrency.html | 2 +-
functions/concurrencyDecorator.html | 2 +-
functions/dataUri.html | 2 +-
functions/debug.html | 2 +-
functions/decode64.html | 2 +-
functions/encode64.html | 2 +-
functions/go.html | 2 +-
functions/hasKeys.html | 2 +-
functions/hash.html | 2 +-
functions/loadCss.html | 2 +-
functions/makeXorShift32.html | 2 +-
functions/mutex.html | 2 +-
functions/normalizeEmail.html | 2 +-
functions/of.html | 2 +-
functions/once.html | 2 +-
functions/promiseMap.html | 2 +-
functions/randomStr.html | 2 +-
functions/tick.html | 2 +-
functions/timeout.html | 2 +-
functions/until.html | 2 +-
functions/xorShift32.html | 2 +-
interfaces/CacheEntry.html | 4 ++--
types/Code.html | 2 +-
types/FanOutListener.html | 2 +-
types/FanOutUnsubscribe.html | 2 +-
62 files changed, 104 insertions(+), 104 deletions(-)
diff --git a/classes/Cache.html b/classes/Cache.html
index 539bd11..d0c96d4 100644
--- a/classes/Cache.html
+++ b/classes/Cache.html
@@ -1,4 +1,4 @@
-Cache | thingies IndexConstructors constructor
+
Cache | thingies Constructors constructor new Cache < T > ( method ? ) : Cache < T > Parameters method : ( ( key ) => Promise < T > ) = ... ( key ) : Promise < T > Returns Promise < T > Properties Private
entries entries : number = 0
eviction Time eviction Time : number = 20000
gc Period gc Period : number = 30000
max Entries max Entries : number = 100000
method method : ( ( key ) => Promise < T > ) = ... Type declaration ( key ) : Promise < T > Returns Promise < T > Methods exists exists ( key ) : boolean Returns boolean get get ( key ) : Promise < T > Returns Promise < T > get From Source get From Source ( key ) : Promise < T > Returns Promise < T > get Sync get Sync ( key ) : null | T Returns null | T put put ( key , value ) : void Returns void remove remove ( key ) : boolean Returns boolean retire retire ( key , newTime ? ) : boolean Parameters key : string newTime : number = 0 Returns boolean runGC runGC ( ) : void Returns void scheduleGC scheduleGC ( ) : void Returns void startGC startGC ( ) : void Returns void stopGC stopGC ( ) : void Returns void
\ No newline at end of file
+
Constructors constructor new Cache < T > ( method ? ) : Cache < T > Parameters method : ( ( key ) => Promise < T > ) = ... ( key ) : Promise < T > Returns Promise < T > Properties Private
entries entries : number = 0
eviction Time eviction Time : number = 20000
gc Period gc Period : number = 30000
max Entries max Entries : number = 100000
method method : ( ( key ) => Promise < T > ) = ... Type declaration ( key ) : Promise < T > Returns Promise < T > Methods exists exists ( key ) : boolean Returns boolean get get ( key ) : Promise < T > Returns Promise < T > get From Source get From Source ( key ) : Promise < T > Returns Promise < T > get Sync get Sync ( key ) : null | T Returns null | T put put ( key , value ) : void Returns void remove remove ( key ) : boolean Returns boolean retire retire ( key , newTime ? ) : boolean Parameters key : string newTime : number = 0 Returns boolean runGC runGC ( ) : void Returns void scheduleGC scheduleGC ( ) : void Returns void startGC startGC ( ) : void Returns void stopGC stopGC ( ) : void Returns void
\ No newline at end of file
diff --git a/classes/Defer.html b/classes/Defer.html
index 61ce1ce..bcc070e 100644
--- a/classes/Defer.html
+++ b/classes/Defer.html
@@ -2,8 +2,8 @@
promise at any time.
const future = new Defer (); future . promise . then ( value => console . log ( value )); future . resolve ( 123 );
Copy
- Index Properties Readonly
promise promise : Promise < T > = ... Readonly
reject reject : ( ( error ) => void )
Type declaration ( error ) : void Returns void Readonly
resolve resolve : ( ( data ) => void )