Class: Droonga::Searcher::SearchResult
- Inherits:
-
Object
- Object
- Droonga::Searcher::SearchResult
- Defined in:
- lib/droonga/searcher.rb
Instance Attribute Summary collapse
-
#condition ⇒ Object
Returns the value of attribute condition.
-
#count ⇒ Object
Returns the value of attribute count.
-
#end_time ⇒ Object
Returns the value of attribute end_time.
-
#records ⇒ Object
Returns the value of attribute records.
-
#start_time ⇒ Object
Returns the value of attribute start_time.
Instance Method Summary collapse
-
#initialize ⇒ SearchResult
constructor
A new instance of SearchResult.
Constructor Details
#initialize ⇒ SearchResult
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
#condition ⇒ Object
Returns the value of attribute condition.
205 206 207 |
# File 'lib/droonga/searcher.rb', line 205 def condition @condition end |
#count ⇒ Object
Returns the value of attribute count.
205 206 207 |
# File 'lib/droonga/searcher.rb', line 205 def count @count end |
#end_time ⇒ Object
Returns the value of attribute end_time.
205 206 207 |
# File 'lib/droonga/searcher.rb', line 205 def end_time @end_time end |
#records ⇒ Object
Returns the value of attribute records.
205 206 207 |
# File 'lib/droonga/searcher.rb', line 205 def records @records end |
#start_time ⇒ Object
Returns the value of attribute start_time.
205 206 207 |
# File 'lib/droonga/searcher.rb', line 205 def start_time @start_time end |