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_up/index.html | 175 +++++++++++++++++++++++++++++++ 1 file changed, 175 insertions(+) create mode 100644 docs/en/gun/1.1/manual/gun_up/index.html (limited to 'docs/en/gun/1.1/manual/gun_up/index.html') diff --git a/docs/en/gun/1.1/manual/gun_up/index.html b/docs/en/gun/1.1/manual/gun_up/index.html new file mode 100644 index 00000000..c6212506 --- /dev/null +++ b/docs/en/gun/1.1/manual/gun_up/index.html @@ -0,0 +1,175 @@ + + + + + + + + + + Nine Nines: gun_up(3) + + + + + + + + + + + + + + + + +
+
+
+
+ +

gun_up(3)

+ +

Name

+

gun_up - The connection is up

+

Description

+
+
{gun_up, ConnPid, Protocol}
+
+ConnPid  :: pid()
+Protocol :: http | http2
+
+

The connection is up.

+

This message informs the owner process that the connection or reconnection completed.

+

Gun will now start processing the messages it received while waiting for the connection to be up. If this is a reconnection, then this may not be desirable for all requests. Those requests should be cancelled when the connection goes down, and any subsequent messages ignored.

+

Elements

+
ConnPid
+

The pid of the Gun connection process.

+
+
Protocol
+

The protocol selected for this connection. It can be used to determine the capabilities of the server.

+
+
+

Changelog

+
  • 1.0: Message introduced. +
  • +
+

Examples

+
Receive a gun_up message in a gen_server
+
+
handle_info({gun_up, ConnPid, _Protocol},
+            State=#state{conn_pid=ConnPid}) ->
+    %% Do something.
+    {noreply, State}.
+
+

See also

+

gun(3), gun:open(3), gun:open_unix(3), gun:await_up(3), gun_down(3), gun_error(3)

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

+ Gun + 1.1 + Function Reference + +

+ + + +

Navigation

+ +

Version select

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