This gem should be used to make easy to interact (publish, subscribe) with a HPFeeds broker.
Add this line to your application's Gemfile:
gem 'hpfeeds'
And then execute:
$ bundle
Or install it yourself as:
$ gem install hpfeeds
Here is a basic example:
require "hpfeeds"
def on_data(name, chan, payload)
puts "[%s] %s: %s" % [ chan, name, payload ]
# just an example here...
@hp.publish('message', 'channel')
end
def on_error(data)
STDERR.puts "ERROR: " + data.inspect
end
begin
@hp = HPFeeds::Client.new({
host: hpfeeds_server_name_here,
port: hpfeeds_port_number_here, # default is 10000
ident: 'XXXXXX',
secret: '123456'
})
channels = %w[ chan1 chan2 chanN ]
@hp.subscribe(*channels) { |name, chan, payload| on_data(name, chan, payload) }
@hp.run(method(:on_error))
rescue => e
puts "Exception: #{e}"
ensure
@hp.close if @hp
end
It's also possibile to set separate handlers for messages from different channels, as follows:
@hp.subscribe(chan1, chan2) do
puts "Received something"
end
@hp.subscribe(chan3, chan4, chan5) do |name, chan|
puts "Received something on #{chan}, from #{name}"
end
@hp.subscribe(chan6, chan7) { |name, chan, payload| custom_method(name, chan, payload) }
The argument in
@hp.run(method(:on_error))
is an handler for HPFeeds error messages (i.e. 'accessfail'
or 'authfail'
).
It's optional: if you don't provide any handler, an exception will be raised (HPFeeds::ErrorMessage
) in case of error messages.
It's possibile to specify a path for log file (default is stdout) and a log level, as follows
@hp = HPFeeds::Client.new({
host: hpfeeds_server_name_here,
port: hpfeeds_port_number_here, # default is 10000
ident: 'XXXXXX',
secret: '123456',
log_to: path_to_log_file, # default is STDOUT
log_level: :debug # default is info
})
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request