class Protobuf::Rpc::Service

def client(options={})


for all available options.
See Client#initialize and ClientConnection::DEFAULT_OPTIONS
Create a new client for the given service.
def client(options={})
  configure
  Client.new({
    :service => self,
    :async => false,
    :host => self.host,
    :port => self.port
  }.merge(options))
end