Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/kostya/msgpack_protocol

Msgpack protocol for eventmachine
https://github.com/kostya/msgpack_protocol

Last synced: 20 days ago
JSON representation

Msgpack protocol for eventmachine

Awesome Lists containing this project

README

        

# MsgpackProtocol
Msgpack protocol for eventmachine

Install:

gem install msgpack_protocol

Usage:

```ruby
class Server < EM::Connection
include EM::P::MsgpackProtocol

def receive_object obj
send_object({'you said' => obj})
end
end
```