Class: Dev::UI::Spinner::Async
- Inherits:
-
Object
- Object
- Dev::UI::Spinner::Async
- Defined in:
- lib/dev/ui/spinner/async.rb
Class Method Summary collapse
-
.start(title) ⇒ Object
Convenience method for
initialize.
Instance Method Summary collapse
-
#initialize(title) ⇒ Async
constructor
Initializes a new asynchronous spinner with no specific end.
-
#stop ⇒ Object
Stops an asynchronous spinner.
Constructor Details
#initialize(title) ⇒ Async
Initializes a new asynchronous spinner with no specific end. Must call .stop to end the spinner
Attributes
-
title- Title of the spinner to use
Example Usage:
Dev::UI::Spinner::Async.new('Title')
22 23 24 25 26 27 28 29 |
# File 'lib/dev/ui/spinner/async.rb', line 22 def initialize(title) require 'thread' sg = Dev::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
Convenience method for initialize
7 8 9 |
# File 'lib/dev/ui/spinner/async.rb', line 7 def self.start(title) new(title) end |
Instance Method Details
#stop ⇒ Object
Stops an asynchronous spinner
33 34 35 36 |
# File 'lib/dev/ui/spinner/async.rb', line 33 def stop @m.synchronize { @cv.signal } @t.value end |