Class: CircleCI::CLI::Command::BuildWatcher
- Inherits:
-
Object
- Object
- CircleCI::CLI::Command::BuildWatcher
- Defined in:
- lib/circleci/cli/command/watch_command/build_watcher.rb
Instance Attribute Summary collapse
-
#build ⇒ Object
readonly
Returns the value of attribute build.
Instance Method Summary collapse
-
#initialize(build, verbose: false) ⇒ BuildWatcher
constructor
A new instance of BuildWatcher.
- #start ⇒ Object
- #stop(status) ⇒ Object
Constructor Details
#initialize(build, verbose: false) ⇒ BuildWatcher
Returns a new instance of BuildWatcher.
9 10 11 12 13 |
# File 'lib/circleci/cli/command/watch_command/build_watcher.rb', line 9 def initialize(build, verbose: false) @build = build @verbose = verbose = Hash.new { |h, k| h[k] = [] } end |
Instance Attribute Details
#build ⇒ Object (readonly)
Returns the value of attribute build.
7 8 9 |
# File 'lib/circleci/cli/command/watch_command/build_watcher.rb', line 7 def build @build end |
Instance Method Details
#start ⇒ Object
15 16 17 18 |
# File 'lib/circleci/cli/command/watch_command/build_watcher.rb', line 15 def start bind_event_handling @build.channel_name notify_started end |
#stop(status) ⇒ Object
20 21 22 23 |
# File 'lib/circleci/cli/command/watch_command/build_watcher.rb', line 20 def stop(status) client.unsubscribe("#{@build.channel_name}@0") notify_stopped(status) end |