class Concurrent::Event

def reset

Experimental RBS support (using type sampling data from the type_fusion project).

def reset: () -> untyped

This signature was generated using 1 sample from 1 application.

Returns:
  • (Boolean) - should always return `true`
def reset
  synchronize do
    if @set
      @set       = false
      @iteration +=1
    end
    true
  end
end