Tribe EM AMF Socket
This Ruby gem provides AMF Socket bindings for Tribe EM. Currently sending and receive messages is integrated (requests are not).
Installation
Add this line to your application's Gemfile:
gem 'tribe_em_amfsocket'
And then execute:
$ bundle
Or install it yourself as:
$ gem install tribe_em_amfsocket
Usage
# Create a custom connection actor class.
class EchoConnection < Tribe::EM::AmfSocket::Connection
private
def on_post_init(event)
puts "Actor (#{identifier}) connected to client using thread (#{Thread.current.object_id})."
super
end
def on_unbind(event)
puts "Actor (#{identifier}) disconnected from client using thread (#{Thread.current.object_id})."
super
end
def (event)
puts "Actor (#{identifier}) received message (command=#{event.data.command}, params=#{event.data.params} using thread (#{Thread.current.object_id})."
(event.data.command, event.data.params)
enqueue(:shutdown)
end
end
# Create your server actor.
server = Tribe::EM::TcpServer.new('localhost', 9000, EchoConnection)
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