class Groonga::Command::ThreadLimit

A command class that represents `thread_limit` command.

@since 1.1.3

Public Class Methods

command_name() click to toggle source
# File lib/groonga/command/thread-limit.rb, line 26
def command_name
  "thread_limit"
end
parameter_names() click to toggle source
# File lib/groonga/command/thread-limit.rb, line 30
def parameter_names
  [
    :max,
  ]
end

Public Instance Methods

max() click to toggle source

@return [Integer] `max` parameter value.

@since 1.1.3

# File lib/groonga/command/thread-limit.rb, line 42
def max
  integer_value(:max)
end