Class: Flydata::Command::Stop

Inherits:
Base
  • Object
show all
Defined in:
lib/flydata/command/stop.rb

Instance Attribute Summary

Attributes inherited from Base

#opts

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Base

#ask_input_table_name, #ask_yes_no, #choose_one, #dashboard_url, #data_entry, #data_port, #flydata, #initialize, #newline, #redshift_cluster, #redshift_console_url, #register_crontab, #retrieve_data_entries, #separator, #show_purpose_name, #source

Methods included from ExclusiveRunnable

included

Methods included from Flydata::CommandLoggable

#before_logging, #log_error_stderr, #log_info_stdout, #log_warn_stderr

Constructor Details

This class inherits a constructor from Flydata::Command::Base

Class Method Details

.slopObject



8
9
10
11
12
13
# File 'lib/flydata/command/stop.rb', line 8

def self.slop
  Slop.new do
    on 'f', 'full', 'Stop all the processes'
    on 'force-run', 'Run forcefully, ignoring exclusive run info'
  end
end

Instance Method Details

#runObject



14
15
16
17
18
19
20
21
# File 'lib/flydata/command/stop.rb', line 14

def run
  sender = Flydata::Command::Sender.new
  sender.stop
  if opts.full?
    helper = Flydata::Command::Helper.new
    helper.stop(quiet: true)
  end
end