mirror of
https://github.com/swc-project/swc.git
synced 2024-12-21 04:32:01 +03:00
18 lines
494 B
TypeScript
18 lines
494 B
TypeScript
|
// Loaded from https://deno.land/x/discordeno@11.0.0-rc.2/src/ws/send_shard_message.ts
|
||
|
|
||
|
|
||
|
import { DiscordenoShard, WebSocketRequest, ws } from "./ws.ts";
|
||
|
|
||
|
export function sendShardMessage(shard: number | DiscordenoShard, message: WebSocketRequest, highPriority = false) {
|
||
|
if (typeof shard === "number") shard = ws.shards.get(shard)!;
|
||
|
if (!shard) return;
|
||
|
|
||
|
if (!highPriority) {
|
||
|
shard.queue.push(message);
|
||
|
} else {
|
||
|
shard.queue.unshift(message);
|
||
|
}
|
||
|
|
||
|
ws.processQueue(shard.id);
|
||
|
}
|