Module: Ethon::Multi::Options::ClassMethods
- Defined in:
- lib/ethon/multi/options.rb
Overview
:nodoc:
Instance Method Summary collapse
-
#available_options ⇒ Array
Return the available options.
-
#bool_options ⇒ Array
Return the options which need to set as 0 or 1 for multi.
-
#int_options ⇒ Array
Return the options which need to set as an integer for multi.
Instance Method Details
#available_options ⇒ Array
Return the available options.
26 27 28 |
# File 'lib/ethon/multi/options.rb', line 26 def Ethon::Multi::AVAILABLE_OPTIONS end |
#bool_options ⇒ Array
Return the options which need to set as 0 or 1 for multi.
36 37 38 39 40 |
# File 'lib/ethon/multi/options.rb', line 36 def [ :pipelining ] end |
#int_options ⇒ Array
Return the options which need to set as an integer for multi.
48 49 50 51 52 |
# File 'lib/ethon/multi/options.rb', line 48 def [ :maxconnects ] end |