Skip to content

Commit

Permalink
comment
Browse files Browse the repository at this point in the history
  • Loading branch information
codingPF committed Feb 18, 2024
1 parent 6c1fe53 commit c4c67ad
Showing 1 changed file with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,10 @@ protected RecursiveTask<Set<Film>> createCrawlerTask() {
try {
// Sendungen Verpasst (letzten 14 Tage)
// TAG > Episode > Episode2Film
//final Set<OrfOnVideoInfoDTO> epsiodesFromDay = processDayUrlsToCrawl();
//allVideos.addAll(epsiodesFromDay);
//printMessage(ServerMessages.DEBUG_ALL_SENDUNG_FOLGEN_COUNT, getSender().getName(), allVideos.size());
//getAndSetMaxCount(allVideos.size());
final Set<OrfOnVideoInfoDTO> epsiodesFromDay = processDayUrlsToCrawl();
allVideos.addAll(epsiodesFromDay);
printMessage(ServerMessages.DEBUG_ALL_SENDUNG_FOLGEN_COUNT, getSender().getName(), allVideos.size());
getAndSetMaxCount(allVideos.size());
//
// Sendungen a-z
// Buchstabe > Episoden > Episode2Film
Expand All @@ -66,10 +66,10 @@ protected RecursiveTask<Set<Film>> createCrawlerTask() {
getAndSetMaxCount(allVideos.size());
//
// History (top categories) > children >
//final Set<OrfOnVideoInfoDTO> historyVideos = processHistoryUrlToCrawl();
//allVideos.addAll(historyVideos);
//printMessage(ServerMessages.DEBUG_ALL_SENDUNG_FOLGEN_COUNT, getSender().getName(), allVideos.size());
//getAndSetMaxCount(allVideos.size());
final Set<OrfOnVideoInfoDTO> historyVideos = processHistoryUrlToCrawl();
allVideos.addAll(historyVideos);
printMessage(ServerMessages.DEBUG_ALL_SENDUNG_FOLGEN_COUNT, getSender().getName(), allVideos.size());
getAndSetMaxCount(allVideos.size());
//
return new OrfOnVideoInfo2FilmTask(this, new ConcurrentLinkedQueue<>(allVideos));
} catch (final Exception ex) {
Expand Down

0 comments on commit c4c67ad

Please sign in to comment.