forked from pubnub/javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample.html
More file actions
83 lines (75 loc) · 2.25 KB
/
example.html
File metadata and controls
83 lines (75 loc) · 2.25 KB
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
80
81
82
83
<!doctype html>
<html>
<head>
<title>PubNub JavaScript CommonJS</title>
<link
rel=stylesheet
href=http://twitter.github.com/bootstrap/1.4.0/bootstrap.min.css
>
</head>
<body><div class=container>
</div>
<script src=../pubnub.min.js></script>
<script>(function() {
// ----------------------------------------------
// INIT
// ----------------------------------------------
var channel = 'my_channel'
, pubnub = PUBNUB({
publish_key : 'demo',
subscribe_key : 'demo',
ssl : false,
origin : 'pubsub.pubnub.com'
});
// ----------------------------------------------
// Establish a Connection
// ----------------------------------------------
log('Opening a Connection.');
pubnub.subscribe({
channel : channel,
connect : ready,
callback : receive
});
// ----------------------------------------------
// Connection Is Open Now and Ready
// ----------------------------------------------
function ready() {
log('Connection Established.');
send('hello');
}
// ----------------------------------------------
// Received Message
// ----------------------------------------------
function receive(message) {
log('Received a Message.');
log(message);
log('Closing Connection');
pubnub.unsubscribe({ channel : channel });
}
// ----------------------------------------------
// Send a Message
// ----------------------------------------------
function send(message) {
log('Starting to Send a Message.');
pubnub.publish({
channel : channel,
message : message,
callback : send_complete
});
}
// ----------------------------------------------
// Send Request Finished with Status
// ----------------------------------------------
function send_complete(details) {
log('Message Sent Done.');
log(details);
}
// ----------------------------------------------
// Send Request Finished with Status
// ----------------------------------------------
function log(message) {
console.log(message);
}
})();</script>
</body>
</html>