Module: Elasticsearch::Model::Indexing::PrecheckAspect

Included in:
InstanceMethods
Defined in:
lib/elasticsearch/model/indexing_decorator.rb

Instance Method Summary collapse

Instance Method Details

#delete_document(*args) ⇒ Object



9
10
11
# File 'lib/elasticsearch/model/indexing_decorator.rb', line 9

def delete_document(*args)
  super if _should_pass_to_es
end

#index_document(*args) ⇒ Object



5
6
7
# File 'lib/elasticsearch/model/indexing_decorator.rb', line 5

def index_document(*args)
  super if _should_pass_to_es
end

#update_document(*args) ⇒ Object



13
14
15
# File 'lib/elasticsearch/model/indexing_decorator.rb', line 13

def update_document(*args)
  super if _should_pass_to_es
end

#update_document_attributes(*args) ⇒ Object



17
18
19
# File 'lib/elasticsearch/model/indexing_decorator.rb', line 17

def update_document_attributes(*args)
  super if _should_pass_to_es
end