Class: Xberg::ExtractionSummary

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeExtractionSummary

Returns a new instance of ExtractionSummary.

Parameters:

  • inputs: (Integer)
  • results: (Integer)
  • errors: (Integer)
  • remote_urls: (Integer)
  • pages_crawled: (Integer)
  • documents_downloaded: (Integer)


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

def initialize: (?inputs: Integer, ?results: Integer, ?errors: Integer, ?remote_urls: Integer, ?pages_crawled: Integer, ?documents_downloaded: Integer) -> void

Instance Attribute Details

#documents_downloadedInteger?

Returns the value of attribute documents_downloaded.

Returns:

  • (Integer, nil)


210
211
212
# File 'sig/types.rbs', line 210

def documents_downloaded
  @documents_downloaded
end

#errorsInteger?

Returns the value of attribute errors.

Returns:

  • (Integer, nil)


207
208
209
# File 'sig/types.rbs', line 207

def errors
  @errors
end

#inputsInteger?

Returns the value of attribute inputs.

Returns:

  • (Integer, nil)


205
206
207
# File 'sig/types.rbs', line 205

def inputs
  @inputs
end

#pages_crawledInteger?

Returns the value of attribute pages_crawled.

Returns:

  • (Integer, nil)


209
210
211
# File 'sig/types.rbs', line 209

def pages_crawled
  @pages_crawled
end

#remote_urlsInteger?

Returns the value of attribute remote_urls.

Returns:

  • (Integer, nil)


208
209
210
# File 'sig/types.rbs', line 208

def remote_urls
  @remote_urls
end

#resultsInteger?

Returns the value of attribute results.

Returns:

  • (Integer, nil)


206
207
208
# File 'sig/types.rbs', line 206

def results
  @results
end