Created
July 3, 2014 13:15
-
-
Save anonymous/fcffe2521b748544c73e to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'amazing_redis_queue' | |
AmazingRedisQueue.publish 'nome_da_fila', 'parametro' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class MyWorker | |
def perform(*args) | |
puts args.inspect | |
end | |
end | |
AmazingRedisQueue.subscribe 'nome_da_fila', MyWorker |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment