Class: LaunchDarkly::SynchronousMessage

Inherits:
Object
  • Object
show all
Defined in:
lib/ldclient-rb/events.rb

Direct Known Subclasses

StopMessage, TestSyncMessage

Instance Method Summary collapse

Constructor Details

#initializeSynchronousMessage

Returns a new instance of SynchronousMessage.



70
71
72
# File 'lib/ldclient-rb/events.rb', line 70

def initialize
  @reply = Concurrent::Semaphore.new(0)
end

Instance Method Details

#completedObject



74
75
76
# File 'lib/ldclient-rb/events.rb', line 74

def completed
  @reply.release
end

#wait_for_completionObject



78
79
80
# File 'lib/ldclient-rb/events.rb', line 78

def wait_for_completion
  @reply.acquire
end