Class: LaunchDarkly::SynchronousMessage
- Inherits:
-
Object
- Object
- LaunchDarkly::SynchronousMessage
show all
- Defined in:
- lib/ldclient-rb/events.rb
Instance Method Summary
collapse
Constructor Details
Returns a new instance of SynchronousMessage.
37
38
39
|
# File 'lib/ldclient-rb/events.rb', line 37
def initialize
@reply = Concurrent::Semaphore.new(0)
end
|
Instance Method Details
#completed ⇒ Object
41
42
43
|
# File 'lib/ldclient-rb/events.rb', line 41
def completed
@reply.release
end
|
#wait_for_completion ⇒ Object
45
46
47
|
# File 'lib/ldclient-rb/events.rb', line 45
def wait_for_completion
@reply.acquire
end
|