module Baleen class Job def initialize(client, msg) @client = client @msg = msg end def start @client.request(@msg.params) end def result @client.result end end end