From 87a857865a83c63412bb465a9a570a63f10af8f1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Hoguin?= Date: Wed, 8 Aug 2018 12:55:18 +0200 Subject: Gun 1.1 --- docs/en/gun/1.1/manual/gun.ws_send/index.html | 185 ++++++++++++++++++++++++++ 1 file changed, 185 insertions(+) create mode 100644 docs/en/gun/1.1/manual/gun.ws_send/index.html (limited to 'docs/en/gun/1.1/manual/gun.ws_send/index.html') diff --git a/docs/en/gun/1.1/manual/gun.ws_send/index.html b/docs/en/gun/1.1/manual/gun.ws_send/index.html new file mode 100644 index 00000000..d85ddc00 --- /dev/null +++ b/docs/en/gun/1.1/manual/gun.ws_send/index.html @@ -0,0 +1,185 @@ + + + + + + + + + + Nine Nines: gun:ws_send(3) + + + + + + + + + + + + + + + + +
+
+
+
+ +

gun:ws_send(3)

+ +

Name

+

gun:ws_send - Send Websocket frames

+

Description

+
+
ws_send(ConnPid, Frames) -> ok
+
+ConnPid :: pid()
+Frames  :: Frame | [Frame]
+Frame   :: close | ping | pong
+         | {text | binary | close | ping | pong, iodata()}
+         | {close, non_neg_integer(), iodata()}
+
+

Send Websocket frames.

+

The connection must first be upgraded to Websocket using the function gun:ws_upgrade(3).

+

Arguments

+
ConnPid
+

The pid of the Gun connection process.

+
+
Frames
+

A Websocket frame.

+
+
+ +

Return value

+

The atom ok is returned.

+

Changelog

+
  • 1.0: Function introduced. +
  • +
+

Examples

+
Send a single frame
+
+
gun:ws_send(ConnPid, {text, <<"Hello world!">>}).
+
+ + + + + + + + +

See also

+

gun(3), gun:ws_upgrade(3), gun_upgrade(3), gun_ws(3)

+ + + + + + +
+ +
+ + +

+ Gun + 1.1 + Function Reference + +

+ + + +

Navigation

+ +

Version select

+ + +
+
+
+
+ + + + + + + + + -- cgit v1.2.3