Method: Async::Bus::Protocol::Proxy#method_missing

Defined in:
lib/async/bus/protocol/proxy.rb

#method_missing(*arguments, **options, &block) ⇒ Object

Forward method calls to the remote object.



59
60
61
# File 'lib/async/bus/protocol/proxy.rb', line 59

def method_missing(*arguments, **options, &block)
  @connection.invoke(@name, arguments, options, &block)
end