Another is option is to set this in the model/class that's listening like https://github.com/gocardless/hutch#defining-consumers:
class PersonCreateConsumer
include Mantle::Consumer
consume ['user.login', 'person.create']
def self.receive(channel, message)
# do some work
end
end