Class: Gitlab::GithubImport::Importer::NotesImporter

Inherits:
Object
  • Object
show all
Includes:
ParallelScheduling
Defined in:
lib/gitlab/github_import/importer/notes_importer.rb

Constant Summary

Constants included from ParallelScheduling

ParallelScheduling::ALREADY_IMPORTED_CACHE_KEY, ParallelScheduling::JOB_WAITER_CACHE_KEY, ParallelScheduling::JOB_WAITER_REMAINING_CACHE_KEY

Instance Attribute Summary

Attributes included from ParallelScheduling

#already_imported_cache_key, #client, #job_waiter_cache_key, #job_waiter_remaining_cache_key, #page_counter, #project

Instance Method Summary collapse

Methods included from ParallelScheduling

#abort_on_failure, #already_imported?, #collection_options, #each_object_to_import, #execute, #increment_object_counter?, #initialize, #mark_as_imported, #parallel?, #parallel_import, #sequential_import, #spread_parallel_import

Methods included from JobDelayCalculator

#parallel_import_batch

Instance Method Details

#collection_methodObject



25
26
27
# File 'lib/gitlab/github_import/importer/notes_importer.rb', line 25

def collection_method
  :issues_comments
end

#id_for_already_imported_cache(note) ⇒ Object



29
30
31
# File 'lib/gitlab/github_import/importer/notes_importer.rb', line 29

def id_for_already_imported_cache(note)
  note[:id]
end

#importer_classObject



9
10
11
# File 'lib/gitlab/github_import/importer/notes_importer.rb', line 9

def importer_class
  NoteImporter
end

#object_typeObject



21
22
23
# File 'lib/gitlab/github_import/importer/notes_importer.rb', line 21

def object_type
  :note
end

#representation_classObject



13
14
15
# File 'lib/gitlab/github_import/importer/notes_importer.rb', line 13

def representation_class
  Representation::Note
end

#sidekiq_worker_classObject



17
18
19
# File 'lib/gitlab/github_import/importer/notes_importer.rb', line 17

def sidekiq_worker_class
  ImportNoteWorker
end