mirror of
https://github.com/internetarchive/heritrix3.git
synced 2026-08-29 01:46:39 +00:00
Fix broken references in javadoc
This commit is contained in:
@@ -72,10 +72,8 @@ implements Reporter, ProgressStatisticsReporter,
|
||||
private int serialNumber;
|
||||
|
||||
/**
|
||||
* Each ToeThead has an instance of HttpRecord that gets used
|
||||
* Each ToeThead has an instance of Recorder that gets used
|
||||
* over and over by each request.
|
||||
*
|
||||
* @see org.archive.util.RecorderMarker
|
||||
*/
|
||||
private Recorder httpRecorder = null;
|
||||
|
||||
|
||||
@@ -166,8 +166,6 @@ public class FrontierJournal extends CrawlerJournal {
|
||||
* recovery log into the frontier as considered included.
|
||||
*
|
||||
* @param source recovery log file to use
|
||||
* @param controller CrawlController of crawl to update
|
||||
* @param retainFailures whether failure ('Ff') URIs should count as done
|
||||
* @return number of lines in recovery log (for reference)
|
||||
* @throws IOException
|
||||
*/
|
||||
@@ -235,7 +233,6 @@ public class FrontierJournal extends CrawlerJournal {
|
||||
* (excepting those the frontier drops as already having been included)
|
||||
*
|
||||
* @param source recovery log file to use
|
||||
* @param controller CrawlController of crawl to update
|
||||
* @param params Map of options to apply
|
||||
* @param enough latch signalling 'enough' URIs queued to begin crawling
|
||||
*/
|
||||
|
||||
@@ -1224,10 +1224,6 @@ implements Closeable,
|
||||
getInactiveQueuesByPrecedence().tailMap(getPrecedenceFloor()));
|
||||
}
|
||||
|
||||
/**
|
||||
* @param iqueue
|
||||
* @return
|
||||
*/
|
||||
private int tallyInactiveTotals(SortedMap<Integer,Queue<String>> iqueues) {
|
||||
int inactiveCount = 0;
|
||||
for(Queue<String> q : iqueues.values()) {
|
||||
|
||||
@@ -53,7 +53,7 @@ import java.util.logging.Logger;
|
||||
* <p>This code creates some fairly large collections (proprotionate in size to
|
||||
* # discovered URLs) so make sure you allocate
|
||||
* it a large heap to work in. It also takes a while to process a recover log.
|
||||
* <p>See {@link #main()} method at end for test/demo code.
|
||||
* <p>See {@link #main(String[])} method at end for test/demo code.
|
||||
* @author Mike Schwartz, schwartz at CodeOnTheRoad dot com
|
||||
*/
|
||||
public class RecoveryLogMapper {
|
||||
|
||||
@@ -409,12 +409,12 @@ public class FetchHTTP extends Processor implements Lifecycle {
|
||||
return (Boolean) kp.get("sendRange");
|
||||
}
|
||||
/**
|
||||
* Send 'Range' header when a limit ({@link #MAX_LENGTH_BYTES}) on
|
||||
* Send 'Range' header when a limit ({@link #setMaxLengthBytes(long)}) on
|
||||
* document size.
|
||||
* <p>
|
||||
* Be polite to the HTTP servers and send the 'Range' header, stating that
|
||||
* you are only interested in the first n bytes. Only pertinent if
|
||||
* {@link #MAX_LENGTH_BYTES} > 0. Sending the 'Range' header results in a
|
||||
* {@link #getMaxLengthBytes()} > 0. Sending the 'Range' header results in a
|
||||
* '206 Partial Content' status response, which is better than just cutting
|
||||
* the response mid-download. On rare occasion, sending 'Range' will
|
||||
* generate '416 Request Range Not Satisfiable' response.
|
||||
|
||||
Reference in New Issue
Block a user