forked from squaremo/rabbit.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (31 loc) · 865 Bytes
/
index.html
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
<!doctype html>
<html>
<head>
<title>rabbit.js examples</title>
</head>
<body>
<h1>rabbit.js examples</h1>
<dl>
<dt>
<h3>Publish/subscribe
</dt>
<dd>
<p>
<a href="pubsub.html">pubsub.html</a> demonstrates a
publish/subscribe pattern, with each "window" having both a
pub socket (for <strong>pub</strong>lishing) and a sub socket
(for <strong>sub</strong>scribing to everything published).
</p>
</dd>
<dt>
<h3>Request/reply
</dt>
<dd>
<a href="request.html">request.html</a> and <a
href="reply.html">reply.html</a> demonstrate a request/reply
pattern. The request page sends requests and gets replies; the
reply page gets requests and sends replies.
</dd>
</dl>
</body>
</html>