af83/chouette-core

View on GitHub
app/lib/chouette/checksum_manager/inline.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Chouette::ChecksumManager  
  class Inline < Base
    # We update the checksums right away
    def watch object, _
      log "watch: #{object_signature(object)}"
      update_object_synchronously object
    end
  end
end