module Esearch::Mixin::Index

Mixin that adds index commands

Public Instance Methods

refresh() click to toggle source

Refresh cluster

@return [self]

@api private

# File lib/esearch/mixin.rb, line 79
def refresh
  Command::Index::Refresh.run(self)
end
status() click to toggle source

Return status of cluster

@return [Status]

@api private

# File lib/esearch/mixin.rb, line 89
def status
  Command::Index::Status.run(self)
end