mirror of
https://github.com/swc-project/swc.git
synced 2024-12-20 20:22:26 +03:00
10 lines
457 B
TypeScript
10 lines
457 B
TypeScript
|
// Loaded from https://deno.land/x/discordeno@11.0.0-rc.2/src/ws/tell_cluster_to_identify.ts
|
||
|
|
||
|
|
||
|
import { ws } from "./ws.ts";
|
||
|
|
||
|
/** Allows users to hook in and change to communicate to different clusters across different servers or anything they like. For example using redis pubsub to talk to other servers. */
|
||
|
export async function tellClusterToIdentify(_workerId: number, shardId: number, _bucketId: number) {
|
||
|
await ws.identify(shardId, ws.maxShards);
|
||
|
}
|