summaryrefslogtreecommitdiff
path: root/frontend-old/node_modules/@firebase/database/dist/node-esm/src/core/stats
diff options
context:
space:
mode:
authoraltaf-creator <dev@altafcreator.com>2025-11-09 11:15:19 +0800
committeraltaf-creator <dev@altafcreator.com>2025-11-09 11:15:19 +0800
commit8eff962cab608341a6f2fedc640a0e32d96f26e2 (patch)
tree05534d1a720ddc3691d346c69b4972555820a061 /frontend-old/node_modules/@firebase/database/dist/node-esm/src/core/stats
pain
Diffstat (limited to 'frontend-old/node_modules/@firebase/database/dist/node-esm/src/core/stats')
-rw-r--r--frontend-old/node_modules/@firebase/database/dist/node-esm/src/core/stats/StatsCollection.d.ts26
-rw-r--r--frontend-old/node_modules/@firebase/database/dist/node-esm/src/core/stats/StatsListener.d.ts30
-rw-r--r--frontend-old/node_modules/@firebase/database/dist/node-esm/src/core/stats/StatsManager.d.ts20
-rw-r--r--frontend-old/node_modules/@firebase/database/dist/node-esm/src/core/stats/StatsReporter.d.ts28
4 files changed, 104 insertions, 0 deletions
diff --git a/frontend-old/node_modules/@firebase/database/dist/node-esm/src/core/stats/StatsCollection.d.ts b/frontend-old/node_modules/@firebase/database/dist/node-esm/src/core/stats/StatsCollection.d.ts
new file mode 100644
index 0000000..0179d61
--- /dev/null
+++ b/frontend-old/node_modules/@firebase/database/dist/node-esm/src/core/stats/StatsCollection.d.ts
@@ -0,0 +1,26 @@
+/**
+ * @license
+ * Copyright 2017 Google LLC
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+/**
+ * Tracks a collection of stats.
+ */
+export declare class StatsCollection {
+ private counters_;
+ incrementCounter(name: string, amount?: number): void;
+ get(): {
+ [k: string]: number;
+ };
+}
diff --git a/frontend-old/node_modules/@firebase/database/dist/node-esm/src/core/stats/StatsListener.d.ts b/frontend-old/node_modules/@firebase/database/dist/node-esm/src/core/stats/StatsListener.d.ts
new file mode 100644
index 0000000..cf6d906
--- /dev/null
+++ b/frontend-old/node_modules/@firebase/database/dist/node-esm/src/core/stats/StatsListener.d.ts
@@ -0,0 +1,30 @@
+/**
+ * @license
+ * Copyright 2017 Google LLC
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+import { StatsCollection } from './StatsCollection';
+/**
+ * Returns the delta from the previous call to get stats.
+ *
+ * @param collection_ - The collection to "listen" to.
+ */
+export declare class StatsListener {
+ private collection_;
+ private last_;
+ constructor(collection_: StatsCollection);
+ get(): {
+ [k: string]: number;
+ };
+}
diff --git a/frontend-old/node_modules/@firebase/database/dist/node-esm/src/core/stats/StatsManager.d.ts b/frontend-old/node_modules/@firebase/database/dist/node-esm/src/core/stats/StatsManager.d.ts
new file mode 100644
index 0000000..7c02ab4
--- /dev/null
+++ b/frontend-old/node_modules/@firebase/database/dist/node-esm/src/core/stats/StatsManager.d.ts
@@ -0,0 +1,20 @@
+/**
+ * @license
+ * Copyright 2017 Google LLC
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+import { RepoInfo } from '../RepoInfo';
+import { StatsCollection } from './StatsCollection';
+export declare function statsManagerGetCollection(repoInfo: RepoInfo): StatsCollection;
+export declare function statsManagerGetOrCreateReporter<T>(repoInfo: RepoInfo, creatorFunction: () => T): T;
diff --git a/frontend-old/node_modules/@firebase/database/dist/node-esm/src/core/stats/StatsReporter.d.ts b/frontend-old/node_modules/@firebase/database/dist/node-esm/src/core/stats/StatsReporter.d.ts
new file mode 100644
index 0000000..402b43b
--- /dev/null
+++ b/frontend-old/node_modules/@firebase/database/dist/node-esm/src/core/stats/StatsReporter.d.ts
@@ -0,0 +1,28 @@
+/**
+ * @license
+ * Copyright 2017 Google LLC
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+import { ServerActions } from '../ServerActions';
+import { StatsCollection } from './StatsCollection';
+export declare class StatsReporter {
+ private server_;
+ private statsListener_;
+ statsToReport_: {
+ [k: string]: boolean;
+ };
+ constructor(collection: StatsCollection, server_: ServerActions);
+ private reportStats_;
+}
+export declare function statsReporterIncludeStat(reporter: StatsReporter, stat: string): void;