Difference between revisions of "PubNub"

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...")
 
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

Revision as of 07:59, 13 April 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"
})