Class: CircleCI::CLI::Command::BuildWatcher

Inherits:
Object
  • Object
show all
Defined in:
lib/circleci/cli/command/watch_command/build_watcher.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(build, verbose: false) ⇒ BuildWatcher

Returns a new instance of BuildWatcher.



9
10
11
12
13
14
15
16
17
18
19
# File 'lib/circleci/cli/command/watch_command/build_watcher.rb', line 9

def initialize(build, verbose: false)
  @build = build
  @verbose = verbose
  @messages = Hash.new { |h, k| h[k] = [] }

  @build_thread = nil

  @steps = build.steps
  @current_step = nil
  @read_byte = 0
end

Instance Attribute Details

#buildObject (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

#startObject



21
22
23
24
# File 'lib/circleci/cli/command/watch_command/build_watcher.rb', line 21

def start
  poll_build
  notify_started
end

#stop(status) ⇒ Object



26
27
28
29
30
# File 'lib/circleci/cli/command/watch_command/build_watcher.rb', line 26

def stop(status)
  update_build
  @build_thread&.kill
  notify_stopped(status)
end