Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sagemathinc
GitHub Repository: sagemathinc/cocalc
Path: blob/master/src/packages/conat/core/supercluster.ts
1452 views
1
/*
2
A supercluster is a cluster of 2 or more Conat servers. Each conat server may itself
3
internally be a cluster using the socketio cluster module, or redis streams or pub/sub.
4
*/
5
6
import type { Client } from "./client";
7
8
export class SuperClusterLink {
9
constructor(private client: Client) {
10
console.log(this.client);
11
}
12
}
13
14