Class: CLI::UI::Spinner::Async

Inherits:
Object
  • Object
show all
Extended by:
T::Sig
Defined in:
lib/cli/ui/spinner/async.rb

Class Method Summary collapse

Instance Method Summary collapse

Methods included from T::Sig

sig

Constructor Details

#initialize(title) ⇒ Async

Returns a new instance of Async.



28
29
30
31
32
33
34
35
# File 'lib/cli/ui/spinner/async.rb', line 28

def initialize(title)
  require 'thread'
  sg = CLI::UI::Spinner::SpinGroup.new
  @m = Mutex.new
  @cv = ConditionVariable.new
  sg.add(title) { @m.synchronize { @cv.wait(@m) } }
  @t = Thread.new { sg.wait }
end

Class Method Details

.start(title) ⇒ Object



12
13
14
# File 'lib/cli/ui/spinner/async.rb', line 12

def self.start(title)
  new(title)
end

Instance Method Details

#stopObject



40
41
42
43
# File 'lib/cli/ui/spinner/async.rb', line 40

def stop
  @m.synchronize { @cv.signal }
  @t.value
end