Sha256: 080839a7b17cc8298d8283f01cdc82d2bd24e847177e330b8f53f0ddfe54b4e3

Contents?: true

Size: 922 Bytes

Versions: 4

Compression:

Stored size: 922 Bytes

Contents

require 'spacebunny'

# Prerequisites:
# - You have created a Live Stream named 'live_data' through the SpaceBunny's web interface.
# - The Live Stream has, as sources, two devices' 'data' channel.
# See our Getting Started [link] for a quick introduction to SpaceBunny's base concepts.

# Once everything is set up go to Users section on SpaceBunny Web UI, select one user and click on 'Access Keys'
# Pick or create one access key and copy 'Client' and 'Secret'.

client = 'live_stream_key_client'
secret = 'live_stream_key_secret'

# Instantiate a Spacebunny::LiveStream (AMQP by default) client, providing the 'client' and 'secret' options.
# Also provide  tls: true to  establish a NON tls-encrypted connection

live = Spacebunny::LiveStream.new client: client, secret: secret, tls: false
live.connect

live.message_from_cache :live_data, ack: :auto, wait: true do |message|
  puts "Received: #{message.payload}"
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
spacebunny-4.2.0 examples/live_stream/non_tls_connection.rb
spacebunny-4.1.1 examples/live_stream/non_tls_connection.rb
spacebunny-4.1.0 examples/live_stream/non_tls_connection.rb
spacebunny-4.0.0 examples/live_stream/non_tls_connection.rb