EventMachine::Protocols::BerpProtocol
EventMachine connection protocol for sending and receiving BERP messages.
Installation
Add this line to your application's Gemfile:
gem 'em-berp-protocol'
And then execute:
$ bundle
Or install it yourself as:
$ gem install em-berp-protocol
Usage
require 'em-berp-protocol'
module RubyServer
include EventMachine::Protocols::BerpProtocol
def receive_object(obj)
send_object({'Oh yeah' => obj})
end
# Optional - specify a receive_error method to get notifications of problems parsing bert data
# When this happens em-berp-protocol closes the client connection
def receive_error(error_string)
puts error
end
end
Contributing
- 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
Author
Will Jessop, @will_j on Twitter, [email protected]
Let me know if you have any problems or need help getting it working.