vibe.d beta banner
get vibe.d
0.10.0

Asynchronous I/O that doesn’t get in your way, written in D

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.

Authors

Jan Krüger

Copyright

© 2012-2014 Sönke Ludwig

License

Subject to the terms of the MIT license, as written in the included LICENSE.txt file.