Class: AllQ::Touch

Inherits:
Base
  • Object
show all
Defined in:
lib/allq/actions/touch.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, #send_hash_as_json, #setup

Constructor Details

This class inherits a constructor from AllQ::Base

Instance Method Details

#base_send(job_id) ⇒ Object



18
19
20
21
22
23
24
25
# File 'lib/allq/actions/touch.rb', line 18

def base_send(job_id)
  {
    'action' => 'touch',
    'params' => {
      'job_id' => job_id
    }
  }
end

#rcv(data) ⇒ Object



13
14
15
16
# File 'lib/allq/actions/touch.rb', line 13

def rcv(data)
  return nil if data.to_s == '' || data.to_s.strip == '{}'
  JSON.parse(data)
end

#snd(data) ⇒ Object



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

def snd(data)
  job_id = data[:job_id]

  send_data = base_send(job_id)
  response = send_hash_as_json(send_data, true)
  result = rcv(response)
  return result["touch"] && result["touch"]["job_id"]
end