Class: Crawlberg::BatchScrapeResults
- Inherits:
-
Object
- Object
- Crawlberg::BatchScrapeResults
- 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[BatchScrapeResult]
readonly
Returns the value of attribute results.
-
#total_count ⇒ Integer
readonly
Returns the value of attribute total_count.
Instance Method Summary collapse
-
#initialize ⇒ BatchScrapeResults
constructor
A new instance of BatchScrapeResults.
Constructor Details
#initialize ⇒ BatchScrapeResults
Returns a new instance of BatchScrapeResults.
69 |
# File 'sig/types.rbs', line 69
def initialize: (?results: Array[BatchScrapeResult], ?total_count: Integer, ?completed_count: Integer, ?failed_count: Integer) -> void
|
Instance Attribute Details
#completed_count ⇒ Integer (readonly)
Returns the value of attribute completed_count.
66 67 68 |
# File 'sig/types.rbs', line 66 def completed_count @completed_count end |
#failed_count ⇒ Integer (readonly)
Returns the value of attribute failed_count.
67 68 69 |
# File 'sig/types.rbs', line 67 def failed_count @failed_count end |
#results ⇒ Array[BatchScrapeResult] (readonly)
Returns the value of attribute results.
64 65 66 |
# File 'sig/types.rbs', line 64 def results @results end |
#total_count ⇒ Integer (readonly)
Returns the value of attribute total_count.
65 66 67 |
# File 'sig/types.rbs', line 65 def total_count @total_count end |