Class: Crawlberg::BatchCrawlResult
- Inherits:
-
Object
- Object
- Crawlberg::BatchCrawlResult
- Defined in:
- sig/types.rbs
Instance Attribute Summary collapse
-
#error ⇒ String?
readonly
Returns the value of attribute error.
-
#result ⇒ CrawlResult?
readonly
Returns the value of attribute result.
-
#url ⇒ String
readonly
Returns the value of attribute url.
Instance Method Summary collapse
-
#initialize ⇒ BatchCrawlResult
constructor
A new instance of BatchCrawlResult.
Constructor Details
#initialize ⇒ BatchCrawlResult
Returns a new instance of BatchCrawlResult.
37 |
# File 'sig/types.rbs', line 37
def initialize: (?url: String, ?result: CrawlResult, ?error: String) -> void
|
Instance Attribute Details
#error ⇒ String? (readonly)
Returns the value of attribute error.
35 36 37 |
# File 'sig/types.rbs', line 35 def error @error end |
#result ⇒ CrawlResult? (readonly)
Returns the value of attribute result.
34 35 36 |
# File 'sig/types.rbs', line 34 def result @result end |
#url ⇒ String (readonly)
Returns the value of attribute url.
33 34 35 |
# File 'sig/types.rbs', line 33 def url @url end |