hhba/mapa76-core

View on GitHub
lib/mapa76/core/lib/document_process_bootstrap_task.rb

Summary

Maintainability
A
0 mins
Test Coverage
class DocumentProcessBootstrapTask
  @queue = :misc

  # NOTE Analyzers should override this method
  # and reenqueue Document to the first step of the process.
  def self.perform(document_id)
    raise NotImplementedError
  end
end