Class: RemoteService::Proxy

Inherits:
Base
  • Object
show all
Defined in:
lib/remote_service/proxy.rb

Class Method Summary collapse

Methods inherited from Base

queue_name

Class Method Details

.method_missing(method_name, *args, &block) ⇒ Object



4
5
6
# File 'lib/remote_service/proxy.rb', line 4

def method_missing(method_name, *args, &block)
  service_call(method_name, args, &block)
end

.timeout(time) ⇒ Object



8
9
10
# File 'lib/remote_service/proxy.rb', line 8

def timeout(time)
  @timeout = time
end