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:



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

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

Instance Attribute Details

#errorString? (readonly)

Returns the value of attribute error.

Returns:

  • (String, nil)


35
36
37
# File 'sig/types.rbs', line 35

def error
  @error
end

#resultCrawlResult? (readonly)

Returns the value of attribute result.

Returns:



34
35
36
# File 'sig/types.rbs', line 34

def result
  @result
end

#urlString (readonly)

Returns the value of attribute url.

Returns:

  • (String)


33
34
35
# File 'sig/types.rbs', line 33

def url
  @url
end