class Playwright::RouteHandler::CountDown
def expired?
def expired? @count <= 0 end
def increment
def increment return false if expired? @count = @count - 1 true end
def initialize(count)
def initialize(count) @count = count end
def expired? @count <= 0 end
def increment return false if expired? @count = @count - 1 true end
def initialize(count) @count = count end