module ActiveRpc
Constants
- VERSION
Public Class Methods
configure() { |config| ... }
click to toggle source
# File lib/active_rpc.rb, line 11 def self.configure self.config ||= Configuration.new yield(config) end
get_executor(method)
click to toggle source
# File lib/active_rpc.rb, line 17 def self.get_executor(method) operation_map[method] end
operation_map()
click to toggle source
# File lib/active_rpc.rb, line 21 def self.operation_map @operation_map ||= {} end