OptionalWebSocketManagerOptions
Optional additional configuration for the WebSocketManager
The compression method to use null (no compression)
The encoding to use 'json'
Properties to send to the gateway when identifying
Initial presence data to send to the gateway when identifying
Value between 50 and 250, total number of members where the gateway will stop sending offline members in the guild member list
Function used to retrieve session information (and attempt to resume) for a given shard
Example
const manager = new WebSocketManager( async retrieveSessionInfo(shardId): AwaitableSessionInfo | null // Fetch this info from redis or similar return sessionId: string, sequence: number ; // Return null if no information is found , );The total number of shards across all WebsocketManagers you intend to instantiate. Use
null
to use Discord's recommended shard countThe ids of the shards this WebSocketManager should manage. Use
null
to simply spawn 0 through shardCount - 1
Example
const manager = new WebSocketManager( shardIds: [1, 3, 7], // spawns shard 1, 3, and 7, nothing else );Example
const manager = new WebSocketManager( shardIds: start: 3, end: 6, , // spawns shards 3, 4, 5, and 6 );Function used to store session information for a given shard