All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.saucesubfresh.starter.crawler.handler.DefaultCrawlerSpiderHandler Maven / Gradle / Ivy

package com.saucesubfresh.starter.crawler.handler;


import com.saucesubfresh.starter.crawler.pipeline.*;
import lombok.extern.slf4j.Slf4j;

import java.util.ArrayList;
import java.util.List;

/**
 * @author lijunping on 2022/2/25
 */
@Slf4j
public class DefaultCrawlerSpiderHandler extends AbstractCrawlerSpiderHandler {

    private final List pipelines = new ArrayList<>();

    @Override
    protected List getPipeline() {
        return pipelines;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy