Sha256: 1fa110469b0de2a2466155795028e628f9b8ea61a48ca21ff6372175c4b26cdf

Contents?: true

Size: 554 Bytes

Versions: 1

Compression:

Stored size: 554 Bytes

Contents

# BunnyRpc

rabbitmq RPC on bunny

## Installation

Add this line to your application's Gemfile:

```ruby
gem 'bunny_rpc'
```

And then execute:

    $ bundle

Or install it yourself as:

    $ gem install bunny_rpc

## Usage

### Client

```
require 'bunny_rpc'

client = BunnyRpc::Client.new

client.publish('okokokokok', 'queue1')

client.close
```

### Server

```
require 'bunny_rpc'

server = BunnyRpc::Server.new

server.subscribe('queue1') do |data|
  puts data

  'get it !'
end

the last block body is the return body.
```

## TODO

* Time Out

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
bunny_rpc-0.1.3 README.md