Class: Crawlberg::BatchCrawlResult

Inherits:
Object
  • Object
show all
Defined in:
sig/types.rbs

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeBatchCrawlResult

Returns a new instance of BatchCrawlResult.

Parameters:



443
# File 'sig/types.rbs', line 443

def initialize: (?url: String, ?result: CrawlResult, ?error: String) -> void

Instance Attribute Details

#errorString?

Returns the value of attribute error.

Returns:

  • (String, nil)


441
442
443
# File 'sig/types.rbs', line 441

def error
  @error
end

#resultCrawlResult?

Returns the value of attribute result.

Returns:



440
441
442
# File 'sig/types.rbs', line 440

def result
  @result
end

#urlString?

Returns the value of attribute url.

Returns:

  • (String, nil)


439
440
441
# File 'sig/types.rbs', line 439

def url
  @url
end