Class: Droonga::Searcher::SearchResult

Inherits:
Object
  • Object
show all
Defined in:
lib/droonga/searcher.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeSearchResult

Returns a new instance of SearchResult.



207
208
209
210
211
212
213
# File 'lib/droonga/searcher.rb', line 207

def initialize
  @start_time = nil
  @end_time = nil
  @condition = nil
  @records = nil
  @count = nil
end

Instance Attribute Details

#conditionObject

Returns the value of attribute condition.



205
206
207
# File 'lib/droonga/searcher.rb', line 205

def condition
  @condition
end

#countObject

Returns the value of attribute count.



205
206
207
# File 'lib/droonga/searcher.rb', line 205

def count
  @count
end

#end_timeObject

Returns the value of attribute end_time.



205
206
207
# File 'lib/droonga/searcher.rb', line 205

def end_time
  @end_time
end

#recordsObject

Returns the value of attribute records.



205
206
207
# File 'lib/droonga/searcher.rb', line 205

def records
  @records
end

#start_timeObject

Returns the value of attribute start_time.



205
206
207
# File 'lib/droonga/searcher.rb', line 205

def start_time
  @start_time
end