class Groonga::Command::Shutdown

A command class that represents `shutdown` command.

@since 1.1.8

Public Class Methods

command_name() click to toggle source
# File lib/groonga/command/shutdown.rb, line 26
def command_name
  "shutdown"
end
parameter_names() click to toggle source
# File lib/groonga/command/shutdown.rb, line 30
def parameter_names
  [
    :mode,
  ]
end

Public Instance Methods

mode() click to toggle source

@return [String] `mode` parameter value.

@since 1.1.8

# File lib/groonga/command/shutdown.rb, line 42
def mode
  self[:mode]
end