Kreuzcrawl.BatchCrawlResults (kreuzcrawl v0.3.0-rc.43)

Copy Markdown

Aggregate result of a batch crawl, exposing per-URL results plus precomputed counts.

The counts are derived once at construction so every binding language can read them as plain integer fields without re-iterating the results vector.

Summary

Types

t()

Aggregate result of a batch crawl, exposing per-URL results plus precomputed counts.

Types

t()

@type t() :: %Kreuzcrawl.BatchCrawlResults{
  completed_count: non_neg_integer(),
  failed_count: non_neg_integer(),
  results: [map()],
  total_count: non_neg_integer()
}

Aggregate result of a batch crawl, exposing per-URL results plus precomputed counts.