Class: Crawlberg::BatchCrawlResults
- Inherits:
-
Object
- Object
- Crawlberg::BatchCrawlResults
- Defined in:
- sig/types.rbs
Instance Attribute Summary collapse
-
#completed_count ⇒ Integer
readonly
Returns the value of attribute completed_count.
-
#failed_count ⇒ Integer
readonly
Returns the value of attribute failed_count.
-
#results ⇒ Array[BatchCrawlResult]
readonly
Returns the value of attribute results.
-
#total_count ⇒ Integer
readonly
Returns the value of attribute total_count.
Instance Method Summary collapse
-
#initialize ⇒ BatchCrawlResults
constructor
A new instance of BatchCrawlResults.
Constructor Details
#initialize ⇒ BatchCrawlResults
Returns a new instance of BatchCrawlResults.
46 |
# File 'sig/types.rbs', line 46
def initialize: (?results: Array[BatchCrawlResult], ?total_count: Integer, ?completed_count: Integer, ?failed_count: Integer) -> void
|
Instance Attribute Details
#completed_count ⇒ Integer (readonly)
Returns the value of attribute completed_count.
43 44 45 |
# File 'sig/types.rbs', line 43 def completed_count @completed_count end |
#failed_count ⇒ Integer (readonly)
Returns the value of attribute failed_count.
44 45 46 |
# File 'sig/types.rbs', line 44 def failed_count @failed_count end |
#results ⇒ Array[BatchCrawlResult] (readonly)
Returns the value of attribute results.
41 42 43 |
# File 'sig/types.rbs', line 41 def results @results end |
#total_count ⇒ Integer (readonly)
Returns the value of attribute total_count.
42 43 44 |
# File 'sig/types.rbs', line 42 def total_count @total_count end |