class Concurrent::Event

def set?

Returns:
  • (Boolean) - indicating whether or not the `Event` has been set
def set?
  synchronize { @set }
end