Class: Crawlberg::BatchCrawlResults

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeBatchCrawlResults

Returns a new instance of BatchCrawlResults.

Parameters:

  • results: (Array[BatchCrawlResult])
  • total_count: (Integer)
  • completed_count: (Integer)
  • failed_count: (Integer)


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

def initialize: (?results: Array[BatchCrawlResult], ?total_count: Integer, ?completed_count: Integer, ?failed_count: Integer) -> void

Instance Attribute Details

#completed_countInteger?

Returns the value of attribute completed_count.

Returns:

  • (Integer, nil)


458
459
460
# File 'sig/types.rbs', line 458

def completed_count
  @completed_count
end

#failed_countInteger?

Returns the value of attribute failed_count.

Returns:

  • (Integer, nil)


459
460
461
# File 'sig/types.rbs', line 459

def failed_count
  @failed_count
end

#resultsArray[BatchCrawlResult]?

Returns the value of attribute results.

Returns:



456
457
458
# File 'sig/types.rbs', line 456

def results
  @results
end

#total_countInteger?

Returns the value of attribute total_count.

Returns:

  • (Integer, nil)


457
458
459
# File 'sig/types.rbs', line 457

def total_count
  @total_count
end