Class: ArrowFlight::ClientOptions
- Inherits:
-
Object
- Object
- ArrowFlight::ClientOptions
- Defined in:
- lib/arrow-flight/client-options.rb
Class Method Summary collapse
Class Method Details
.try_convert(value) ⇒ Object
21 22 23 24 25 26 27 28 29 30 31 32 |
# File 'lib/arrow-flight/client-options.rb', line 21 def try_convert(value) case value when Hash = new value.each do |name, value| .__send__("#{name}=", value) end else nil end end |