method
ServerWebSocket.publishText
topic: string,
data: string,
compress?: boolean
): number;
Sends a text message to subscribers of the topic.
@param topic
The topic name.
@param data
The data to send.
@param compress
Whether to compress the data. Ignored if the client does not support compression
ws.publish("chat", "Hello!");
ws.publish("chat", "Compress this.", true);