Class: Gapic::Config::Method
- Inherits:
-
Object
- Object
- Gapic::Config::Method
- Extended by:
- Gapic::Config
- Defined in:
- lib/gapic/config/method.rb
Overview
Config::Method is a configuration class that represents the configuration for an API RPC call.
Instance Method Summary collapse
-
#initialize(parent_method = nil) {|_self| ... } ⇒ Method
constructor
Create a new Config::Method object instance.
Methods included from Gapic::Config
Constructor Details
#initialize(parent_method = nil) {|_self| ... } ⇒ Method
Create a new Config::Method object instance.
58 59 60 61 62 |
# File 'lib/gapic/config/method.rb', line 58 def initialize parent_method = nil @parent_config = parent_method unless parent_method.nil? yield self if block_given? end |