Method: FreeMessageQueue::SyncronizedQueue#put
- Defined in:
- lib/fmq/queues/syncronized.rb
#put(message) ⇒ Object
Puts one message to the queue
47 48 49 50 51 |
# File 'lib/fmq/queues/syncronized.rb', line 47 def put() @semaphore.synchronize { super() } end |