class Concurrent::Event

def set?

Returns:
  • (Boolean) - indicating whether or not the `Event` has been set
def set?
  @mutex.lock
  result = @set
  @mutex.unlock
  result
end