Class: AllQ::Clear

Inherits:
Base
  • Object
show all
Defined in:
lib/allq/actions/clear.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(cache_type) ⇒ Object



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

def base_send(cache_type)
  {
    'action' => 'clear',
    'params' => {
      'cache_type' => cache_type
    }
  }
end

#rcv(data) ⇒ Object



13
14
15
16
# File 'lib/allq/actions/clear.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/clear.rb', line 4

def snd(data)
  cache_type = data[:cache_type] || "all"

  send_data = base_send(cache_type)
  response = send_hash_as_json(send_data)
  result = rcv(response)
  rcv(response)
end