PubNub: Difference between revisions

From air
Jump to navigation Jump to search
(Created page with "PubNub http://www.pubnub.com/ Operateur Cloud de PubSub (PSaaS) * Unicast and broadcast data push, presence, storage, mobile, analytics, security and much more * Connecting e...")
 
No edit summary
 
(One intermediate revision by the same user not shown)
Line 2: Line 2:


Operateur Cloud de PubSub (PSaaS)
Operateur Cloud de PubSub (PSaaS)
* Unicast and broadcast data push, presence, storage, mobile, analytics, security and much more
* ''Unicast and broadcast data push, presence, storage, mobile, analytics, security and much more''
* Connecting everyone on earth in less than ¼ of a second with 11 data centers and 99.999% uptime SLA
* ''Connecting everyone on earth in less than ¼ of a second with 11 data centers and 99.999% uptime SLA''
* Store your real-time data streams for future access, “playback” or re-publish
* ''Store your real-time data streams for future access, “playback” or re-publish''


<pre>
<pre>
Line 13: Line 13:
})
})
</pre>
</pre>

<pre>
<pre>
// send events
// send events
Line 20: Line 21:
})
})
</pre>
</pre>

See : [[InfluxDB#Node.js_et_PubNub]]

Latest revision as of 07:46, 31 October 2014

PubNub http://www.pubnub.com/

Operateur Cloud de PubSub (PSaaS)

  • Unicast and broadcast data push, presence, storage, mobile, analytics, security and much more
  • Connecting everyone on earth in less than ¼ of a second with 11 data centers and 99.999% uptime SLA
  • Store your real-time data streams for future access, “playback” or re-publish
// listen to events
PUBNUB.subscribe({
channel : "my_channel",
message : function(m){alert(m)}
})
// send events
PUBNUB.publish({
channel : "my_channel",
message : "Hello World"
})

See : InfluxDB#Node.js_et_PubNub