aboutsummaryrefslogtreecommitdiffstats
path: root/guide/protocols.md
blob: c3aef6f74764acfd906413a4c2ce06d0f3722b04 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
Supported protocols
===================

This chapter describes the supported protocols and lists
the calls that are valid for each of them.

HTTP
----

HTTP is a text request-response protocol. The client
initiates requests and then waits for the server responses.
The server has no means of creating requests or pushing
data to the client.

SPDY
----

SPDY is a binary protocol based on HTTP, compatible with
the HTTP semantics, that reduces the complexity of parsing
requests and responses, compresses the HTTP headers and
allows the server to push data directly to the client.

Websocket
---------

Websocket is a binary protocol established over HTTP that
allows asynchronous concurrent communication between the
client and the server. A Websocket server can push data to
the client at any time.

Websocket over SPDY is not supported by the Gun client at
this time.

Operations by protocol
----------------------

This table lists all Gun operations and whether they are
compatible with the supported protocols.

| Operation  | SPDY | HTTP | Websocket |
| ---------- | ---- | ---- | --------- |
| delete     | yes  | yes  | no        |
| get        | yes  | yes  | no        |
| head       | yes  | yes  | no        |
| options    | yes  | yes  | no        |
| patch      | yes  | yes  | no        |
| post       | yes  | yes  | no        |
| put        | yes  | yes  | no        |
| request    | yes  | yes  | no        |
| response   | yes  | no   | no        |
| data       | yes  | yes  | no        |
| cancel     | yes  | yes  | no        |
| ws_upgrade | no   | yes  | no        |
| ws_send    | no   | no   | yes       |

While the `cancel` operation is available to HTTP, its effects
will only be local, as there is no way to tell the server to
stop sending data. Gun instead just doesn't forward the messages
for this stream anymore.

Messages by protocol
--------------------

This table lists all messages that can be received depending
on the current protocol.

| Message                         | SPDY | HTTP | Websocket |
| ------------------------------- | ---- | ---- | --------- |
| {gun_push, ...}                 | yes  | no   | no        |
| {gun_response, ...}             | yes  | yes  | no        |
| {gun_data, ...}                 | yes  | yes  | no        |
| {gun_error, _, StreamRef, _}    | yes  | yes  | no        |
| {gun_error, _, _}               | yes  | yes  | yes       |
| {gun_ws_upgrade, _, ok}         | no   | yes  | no        |
| {gun_ws_upgrade, _, error, ...} | no   | yes  | no        |
| {gun_ws, ...}                   | no   | no   | yes       |

Do not forget that other messages may still be in the mailbox
after you upgrade to Websocket.