Repository URL to install this package:
Version:
0.0.8.1 ▾
|
class FeedWorker
include FrenzyBunnies::Worker
from_queue 'new.feeds', :prefetch => 20, :threads => 13, :durable => true
def work(msg)
puts msg
ack!
end
end
class FeedDownloader
include FrenzyBunnies::Worker
from_queue 'new.downloads', :durable => true
def work(msg)
puts msg
ack!
end
end