WebSocket.send - multiple declarations
Function WebSocket.send
Sends a text message.
void send
(
scope const(char)[] data
) @safe;
On the JavaScript side, the text will be available as message.data (type string).
Throws
A WebSocketException
is thrown if the connection gets closed
before or during the transfer of the message.
Function WebSocket.send
Sends a binary message.
void send
(
const(ubyte[]) data
) @safe;
On the JavaScript side, the text will be available as message.data (type Blob).
Throws
A WebSocketException
is thrown if the connection gets closed
before or during the transfer of the message.
Function WebSocket.send
Sends a message using an output stream.
void send
(
scope @safe void delegate(scope OutgoingWebSocketMessage) sender,
vibe .http .websockets .FrameOpcode frameOpcode
) @safe;
Throws
A WebSocketException
is thrown if the connection gets closed
before or during the transfer of the message.
Function WebSocket.send
Compatibility overload - will be removed soon.