Class: BasicJRPC::FAFClient

Inherits:
Client
  • Object
show all
Defined in:
lib/basicjrpc/client.rb

Overview

Fire And Forget Client

Instance Method Summary collapse

Methods inherited from Client

#initialize, #method_missing, #terminate

Constructor Details

This class inherits a constructor from BasicJRPC::Client

Dynamic Method Handling

This class handles dynamic methods through the method_missing method in the class BasicJRPC::Client

Instance Method Details

#send_request(payload) ⇒ Object



53
54
55
56
57
58
59
60
61
62
# File 'lib/basicjrpc/client.rb', line 53

def send_request payload
  payload[:message_id] = SecureRandom.uuid
  payload[:response] = true
  payload[:caller] = caller.first(10)
  #@nsq_producer.write(Oj.dump(payload))
  @redis.rpush(@queue, Oj.dump(payload))
rescue Exception => e
  #terminate
  raise e
end