swc/crates/swc_bundler/tests/.cache/deno/393639739083c9a0d1df64346f52379d13e4870a.ts
2021-11-09 20:42:49 +09:00

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);
}