Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/kostya/msgpack_protocol
- Owner: kostya
- License: mit
- Created: 2014-04-12T23:51:52.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2014-04-12T23:56:51.000Z (over 10 years ago)
- Last Synced: 2024-09-19T23:29:09.951Z (about 2 months ago)
- Language: Ruby
- Homepage:
- Size: 121 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# MsgpackProtocol
Msgpack protocol for eventmachineInstall:
gem install msgpack_protocol
Usage:
```ruby
class Server < EM::Connection
include EM::P::MsgpackProtocoldef receive_object obj
send_object({'you said' => obj})
end
end
```