WebSocket.send - multiple declarations
Function WebSocket.send
Sends a text message.
void send
(
scope const(char)[] data
) scope scope @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
(
in const(ubyte[]) data
) scope scope @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,
FrameOpcode frameOpcode
) scope scope @safe;
Throws
A WebSocketException
is thrown if the connection gets closed
before or during the transfer of the message.