class Covered::Persist

def load!(**options)

def load!(**options)
	return unless File.exist?(@path)
	
	# Load existing coverage information and mark all files:
	File.open(@path, "rb") do |file|
		file.flock(File::LOCK_SH)
		
		Console.logger.debug(self) {"Loading from #{@path} with #{options}..."}
		
		make_unpacker(file).each do |record|
			self.apply(record, **options)
		end
	end
end