Class: AllQ::Kick

Inherits:
Base
  • Object
show all
Defined in:
lib/allq/actions/kick.rb

Constant Summary

Constants inherited from Base

Base::ALLQ_DEBUG_DATA

Instance Attribute Summary

Attributes inherited from Base

#client, #connection

Instance Method Summary collapse

Methods inherited from Base

#build_job, #initialize, #rcv, #send_hash_as_json, #setup

Constructor Details

This class inherits a constructor from AllQ::Base

Instance Method Details

#base_send(job) ⇒ Object



13
14
15
16
17
18
19
20
21
# File 'lib/allq/actions/kick.rb', line 13

def base_send(job)
  {
    'action' => 'kick',
    'params' => {
      'job_id' => job.id,
      'tube' => job.tube
    }
  }
end

#snd(data) ⇒ Object



4
5
6
7
8
9
10
11
# File 'lib/allq/actions/kick.rb', line 4

def snd(data)
  result = nil
  job = data[:job]

  send_data = base_send(job)
  response = send_hash_as_json(send_data, true)
  rcv(response)
end